如果我需要使用什么正则表达式
需要在玩家列表中选择“10”而不是从组中选择“10”
{"group":"10","player":["12","15","13","10","1"]}
抱歉,我应该在编程范围上提供更多信息
json 字符串应该被视为字符串而不是 json 解析,因为我需要在 mysql 中使用查询来选择符合此条件的行。
例如,在上面的例子中......
Select * from team Where jsondata=(Something to the effect that "10" can be found in player list but will ignore if "10" is found only in group)
如果我使用:
Select * from team Where jsondata LIKE'%"10"%'
那么显然这是错误的,因为如果数据是{"group":"10","player":[]}
它仍然符合条件
我想运行一个 php 命令preg_match
来匹配播放器列表中的“10”(如果找到)
感谢到目前为止已经回复的人