这可能真的很简单。所以,我有这张表,用户有一个字段'full_name'
说我有类似的条目
"John Doe"
"Jane Doe"
"Colby Smith Jr"
"Apple Smith"
我需要一个适合这些条件的正则表达式搜索:
query = John => return 'John Doe'
query = Doe => return 'John Doe', 'Jane Doe'
query = Apple => return 'Apple Smith'
query = Smith => return 'Colby Smith Jr', 'Apply Smith'
query = Apple Smith => return 'Apple Smith'
query = Smith Jr => return 'Colby Smith Jr'
所以基本上,我需要一个正则表达式函数来搜索查询*(* 是通配符?)
或(结果字符串中空格后的第一个字符)查询
那有意义吗?
基本上,我试图模仿 instagram 搜索中的功能。如果可以,请检查一下。