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.
我的正则表达式很弱。
我想拆分这些字符:
这就是我所拥有的:
preg_split('/\+|-|\s|_/', $string ),
...我怀疑这是不对的 - 在“+”号上。我想要一些建议。
preg_split('/[+\s_-]/', $string);应该为你工作。这是使用您的角色而不是一系列管道创建一个角色类。
preg_split('/[+\s_-]/', $string);
注意- 有时重要的-是放在角色类的最后一个,所以我倾向于总是把它放在那里以确保安全。
-