我正在尝试匹配这种模式
$regex_pattern = '<td id="(\w+)" class="(\w+)">(\w+).com<\/td>';
preg_match_all($regex_pattern, $result, $matches);
print_r($matches);
但我收到此错误:警告:preg_match_all(): Unknown modifier '(' in
我的正则表达式模式有什么问题?
我正在尝试匹配这种模式
$regex_pattern = '<td id="(\w+)" class="(\w+)">(\w+).com<\/td>';
preg_match_all($regex_pattern, $result, $matches);
print_r($matches);
但我收到此错误:警告:preg_match_all(): Unknown modifier '(' in
我的正则表达式模式有什么问题?