Mysql REGEXP ‘o’;或“aw”
我正在尝试做一个朋友搜索应用程序。 为此,我使用正则表达式,例如:
SELECT ...
WHERE firstname REGEXP $firstname
$firstname 变量是一个字符串 - 例如:
(ch|k)ris
但由于某种原因它不起作用。也许 ( | ) 在 MySQL 中不起作用?
我可以使用什么来代替该运算符来执行相同的操作?
I'm trying to do a friend search app.
So to do that I'm using regular expressions like:
SELECT ...
WHERE firstname REGEXP $firstname
And the $firstname variable is a string - for example:
(ch|k)ris
But for some reason it does not work. maybe the ( | ) doesn't work in MySQL?
What can I use instead of that operator to do the same thing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 PHP 中将您的行修改为:
in PHP modify your line to this: