需要preg_match_all的信息

时间:2011-10-05 00:50:18

标签: php regex preg-match preg-match-all

2,19,32,43,44,Str1。 1,2 Str2。 2,3

我想剪这个字符串

第1部分:2,19,32,43,44 第2部分:1,2 第3部分:2,3,

坦克寻求帮助。

2 个答案:

答案 0 :(得分:1)

你想要拆分,而不是匹配。因此,请使用preg_split

 $parts = preg_split('/Str\d+\./', $source);

答案 1 :(得分:0)

preg_match_all("/(.*), Str1\. (.*) Str2\. (.*)/")