当前,我正在使用preg_match
来捕获逗号内的字符串,但是它几乎可以是所有语言字符。
例如
“ {” simpleText“:”تبصر کریں“,” Endpoint“:{” 1002029_oeo0100dk“:{” createService“:” any 字符串“}},” simpleText“:”تریں“,”端点“:{” 1002029_oeo0100dk“:{” statusService“:”任何 字符串“}}}
我想抓住تبصر کریں
。
尝试了这个但没有成功的preg_match('/\"simpleText\":\"([\p{L}]+)\"/', $cresponse, $mfc);
,因为在这句话之前也有很多simpleText
个关键字。