Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在做一个数据库查询并且想要转义字符串中的括号,只有当它在我的查询结果中返回时,例如:
/这是一个测试字符串(2013)/
我该怎么做呢?
要创建一个所有特殊字符都转义的正则表达式,请使用
Regexp.new( Regexp.escape(str) )
我希望这是你想要达到的目标。