Home >Backend Development >PHP Tutorial >正则表达式可以全字匹配的吗

正则表达式可以全字匹配的吗

WBOY
WBOYOriginal
2016-06-06 20:26:041551browse

正则表达式可以全字匹配的吗

请问mysql有什么办法可以where搜索数字3的时候不会把31,43都搜出来呢,用like就肯定是不行的,用正则的话有没有办法可以全字匹配3出来的?

回复内容:

正则表达式可以全字匹配的吗

请问mysql有什么办法可以where搜索数字3的时候不会把31,43都搜出来呢,用like就肯定是不行的,用正则的话有没有办法可以全字匹配3出来的?

sql搜出的结果都是以item为单位的,某一项符合like规则就会匹配出结果,所以要操作只能先取出所有的内容,然后用对应需要的正则进行提取。对应的正则可以为/(,|^)3(,|$)/,没有测试过,可能不对但我是那么理解的

like %3

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn