我在php中有这个正则表达式:
$programacion_array = preg_split("/(([0-9]{2}):([0-9]{2}))/",$html, -1, PREG_SPLIT_DELIM_CAPTURE);
我想通过查找程序的小时数来分割文本,示例文本:
ASDF的 6时20 Programold的 7时20 Programnew
但是我的正则表达式正在回复我:
[1] => 06:20 [2] => 06 [3] => 20 [4] => Programold
我不知道自己错过了什么。