summaryrefslogtreecommitdiffhomepage
path: root/mrblib/string.rb
diff options
context:
space:
mode:
Diffstat (limited to 'mrblib/string.rb')
-rw-r--r--mrblib/string.rb45
1 files changed, 26 insertions, 19 deletions
diff --git a/mrblib/string.rb b/mrblib/string.rb
index 6e55ee341..26dbdcb9c 100644
--- a/mrblib/string.rb
+++ b/mrblib/string.rb
@@ -58,28 +58,34 @@ class String
#
# ISO 15.2.10.5.18
def gsub(*args, &block)
- if args.size == 2
- pattern, replace = *args
- plen = pattern.length
+ return to_enum(:gsub, *args) if args.length == 1 && !block
+ raise ArgumentError, "wrong number of arguments" unless (1..2).include?(args.length)
+
+ pattern, replace = *args
+ plen = pattern.length
+ if args.length == 2 && block
+ block = nil
+ end
+ if !replace.nil? || !block
replace = replace.to_str
- offset = 0
- result = []
- while found = index(pattern, offset)
- result << self[offset, found - offset]
- offset = found + plen
- result << replace.__sub_replace(self[0, found], pattern, self[offset..-1] || "")
- if plen == 0
- result << self[offset, 1]
- offset += 1
- end
+ end
+ offset = 0
+ result = []
+ while found = index(pattern, offset)
+ result << self[offset, found - offset]
+ offset = found + plen
+ result << if block
+ block.call(pattern).to_s
+ else
+ replace.__sub_replace(self[0, found], pattern, self[offset..-1] || "")
+ end
+ if plen == 0
+ result << self[offset, 1]
+ offset += 1
end
- result << self[offset..-1] if offset < length
- result.join
- elsif args.size == 1 && block
- split(args[0], -1).join(block.call(args[0]))
- else
- raise ArgumentError, "wrong number of arguments"
end
+ result << self[offset..-1] if offset < length
+ result.join
end
##
@@ -91,6 +97,7 @@ class String
# ISO 15.2.10.5.19
def gsub!(*args, &block)
raise RuntimeError, "can't modify frozen String" if frozen?
+ return to_enum(:gsub!, *args) if args.length == 1 && !block
str = self.gsub(*args, &block)
return nil if str == self
self.replace(str)