我想检查MySQL Query的值是否包含%
个字符(可以多次出现),但不包含转义的\%
。
所以它应该匹配:
'%test'
'%test\%'
'test\\%'
- 应该匹配,因为它逃脱了\
而不是%
'%test\%%'
'\%test%test\%'
但不是:
'test\%'
'\%test\%'
'\%test\%test\%'
我在正则表达方面不擅长,有人可以帮助我吗?
提前致谢。
修改:
我正在尝试创建一个用于从数组生成SQL查询的PHP库,并且生成的查询可能主要用于MySQL
因此,正则表达式过滤过程将使用PHP。
对不起,我忘了提这个。
由于
答案 0 :(得分:1)
假设SQL Server,此应该工作:
WHERE
ColumnX LIKE '%[%]%' ESCAPE '\'
虽然我不确定它是否正确处理\\%
。
这应该适用于任何情况:
WHERE
REPLACE(REPLACE(ColumnX, '\\', ''), '\%', '') LIKE '%[%]%'
答案 1 :(得分:1)
在PHP代码上查看:
unset($str1,$str2,$str3,$str4,$str5,$str6,$str7);
$str1 = '%100';
$str2 = '%100\%';
$str3 = "100\\\\%";
$str4 = "%100\\%%";
$str5 = '100\%';
$str6 = "100\\\\\\\\%";
$str7 = "100\\\\\\%";
$str8 = "100\\\\\\\\\\\\%";
$str9 = "100\\\\\\\\\\\\\\%";
$reg_exp= '/^%|[^\x5C]%|[^\x5C](\x5C\x5C)+%/';
echo $str1.' = '.preg_match($reg_exp, $str1).'<br />';
echo $str2.' = '.preg_match($reg_exp, $str2).'<br />';
echo $str3.' = '.preg_match($reg_exp, $str3).'<br />';
echo $str4.' = '.preg_match($reg_exp, $str4).'<br />';
echo $str5.' = '.preg_match($reg_exp, $str5).'<br />';
echo $str6.' = '.preg_match($reg_exp, $str6).'<br />';
echo $str7.' = '.preg_match($reg_exp, $str7).'<br />';
echo $str8.' = '.preg_match($reg_exp, $str8).'<br />';
echo $str9.' = '.preg_match($reg_exp, $str9).'<br />';