在PHP中,您需要使用
preg_quote()
转义在正则表达式中具有特定含义的字符串中的所有字符,以允许(例如)
preg_match()
搜索那些特殊字符。
以下代码的ruby中的等价物是什么?
// The content of this variable is obtained from user input, in example.
$search = "$var = 100";
if (preg_match('/' . preg_quote($search, '/') . ";/i")) {
// â¦
}