Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 php 中用正则表达式拆分字符串。
例如(此处为字符串,此处为 12345 另一个字符串,
从上面的字符串中,我需要 1) - 5 位代码 2) - 5 位代码之前的字符串,最多大括号 3) - 5 位代码之后的字符串,最多逗号
提前致谢。
试试这个 :
\(([\w\s]+)\,\s([0-9]+)\s([\w\s]+)\,