我必须选择包含单词one
而不是another
. 这些行来自一些 json 字符串,例如:
{"Name" : "one", "LastError" : "No error", "ID" : 1000 , "Comment" : "no comment"} //YES
{"Name" : "one", "LastError" : "No error", "ID" : 1000 , "Comment" : "another"} //NO because there is 'one' and 'another'
我正在使用 php 和 preg_match。
我正在尝试使用类似的东西:
if (preg_match('/one.*(?!another)/i',$row_string) > 0)
{
//no draw
}
else
{
//Draw something
}
看起来向前看并没有做任何事情。