我正在尝试匹配表格中更长字符串中的字符串:
"field_research_topics":{"und":[{"tid":"8"},{"tid":"605"},{"tid":"606"},{"tid":"173"},{"tid":"1659"}]}
其中tid元素的编号未知。
我最好的尝试:
preg_match("\"field_research_topics\":\{\"und\":\[.*?]}", $output, $matches);
导致错误:
警告:preg_match()[function.preg-match]:未知修饰符':'
非常感谢您的帮助。