We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64e0455 commit 5a14d13Copy full SHA for 5a14d13
opal/corelib/regexp.rb
@@ -4,7 +4,7 @@ class Regexp
4
class << self
5
def escape(string)
6
%x{
7
- return string.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$| ]/g, '\\$&')
+ return string.replace(/([-[\]/{}()*+?.^$\\| ])/g, '\\$1')
8
.replace(/[\n]/g, '\\n')
9
.replace(/[\r]/g, '\\r')
10
.replace(/[\f]/g, '\\f')
0 commit comments