summaryrefslogtreecommitdiffhomepage
path: root/mrblib/string.rb
diff options
context:
space:
mode:
authorksss <[email protected]>2017-03-22 22:19:34 +0900
committerksss <[email protected]>2017-03-22 22:19:34 +0900
commit63c0044b1156715d454f0f294e49501aa5075192 (patch)
tree353dee151fa8051f7a5d1e42d81d24d8c8edd2b3 /mrblib/string.rb
parent3703aed7ab7c056ef7a58fd8d25b84b59f715dad (diff)
downloadmruby-63c0044b1156715d454f0f294e49501aa5075192.tar.gz
mruby-63c0044b1156715d454f0f294e49501aa5075192.zip
Fix result if pattern is empty
Diffstat (limited to 'mrblib/string.rb')
-rw-r--r--mrblib/string.rb30
1 files changed, 23 insertions, 7 deletions
diff --git a/mrblib/string.rb b/mrblib/string.rb
index 26dbdcb9c..f91b5a23c 100644
--- a/mrblib/string.rb
+++ b/mrblib/string.rb
@@ -124,15 +124,31 @@ class String
#
# ISO 15.2.10.5.36
def sub(*args, &block)
- if args.size == 2
- pre, post = split(args[0], 2)
- return self unless post # The sub target wasn't found in the string
- pre + args[1].__sub_replace(pre, args[0], post) + post
- elsif args.size == 1 && block
- split(args[0], 2).join(block.call(args[0]))
+ unless (1..2).include?(args.length)
+ raise ArgumentError, "wrong number of arguments (given #{args.length}, expected 2)"
+ end
+
+ pattern, replace = *args
+ pattern = pattern.to_str
+ if args.length == 2 && block
+ block = nil
+ end
+ if !block
+ replace = replace.to_str
+ end
+ result = []
+ this = dup
+ found = index(pattern)
+ return this unless found
+ result << this[0, found]
+ offset = found + pattern.length
+ result << if block
+ block.call(pattern).to_s
else
- raise ArgumentError, "wrong number of arguments"
+ replace.__sub_replace(this[0, found], pattern, this[offset..-1] || "")
end
+ result << this[offset..-1] if offset < length
+ result.join
end
##