summaryrefslogtreecommitdiffhomepage
path: root/mrblib/string.rb
diff options
context:
space:
mode:
Diffstat (limited to 'mrblib/string.rb')
-rw-r--r--mrblib/string.rb11
1 files changed, 10 insertions, 1 deletions
diff --git a/mrblib/string.rb b/mrblib/string.rb
index 322cd0788..66a668e11 100644
--- a/mrblib/string.rb
+++ b/mrblib/string.rb
@@ -146,7 +146,16 @@ class String
##
# ISO 15.2.10.5.27
def match(re, &block)
- re.match(self, &block)
+ if re.respond_to? :to_str
+ if Object.const_defined?(:Regexp)
+ r = Regexp.new(re)
+ r.match(self, &block)
+ else
+ raise NotImplementedError, "String#match needs Regexp class"
+ end
+ else
+ re.match(self, &block)
+ end
end
end