という単語を含む行を選択する必要があり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
}
先読みは何もしていないようです。