PHP preg_split&;Acirc&;nbsp;[0-9]&;Acirc&;nbsp;

PHP preg_split&;Acirc&;nbsp;[0-9]&;Acirc&;nbsp;,php,preg-split,Php,Preg Split,您好,我需要根据此“动态”分隔符将字符串拆分为数组: String   1  String2 String2   65  String3 Â它是可变的。。。字符串还可以包含Â太多了,所以str_替换或爆炸都没用(对我来说) 说明: # Match the characters “ Â&n

您好,我需要根据此“动态”分隔符将字符串拆分为数组:

String   1  String2

String2   65  String3
Â它是可变的。。。字符串还可以包含
Â太多了,所以str_替换或爆炸都没用(对我来说)

说明:

# Match the characters “   ” literally «   »
# Match a single digit 0..9 «[\d]+»
#    Between one and unlimited times, as many times as possible, giving back as needed (greedy) «+»
# Match the characters “  ” literally «Â  »

欢迎来到SO。请把你到目前为止所做的工作的代码贴出来。这不是一个“请给我代码”的网站,虽然你有一个很好的机会,当你问一个正则表达式的问题,以获得代码无论如何。因此,如果有人给你一个正则表达式,请要求解释。让我们清楚地回答你的问题以解决你的问题
# Match the characters “   ” literally «   »
# Match a single digit 0..9 «[\d]+»
#    Between one and unlimited times, as many times as possible, giving back as needed (greedy) «+»
# Match the characters “  ” literally «Â  »