字符串被两个不同的分隔符分割
我有这样的字符串 'some-dasd\dasd-dasdas\dasdas-dasd-das\dsad
'。 我需要用两个不同的符号 '\'
和 '-'
将字符串拆分为数组,所以我想获取数组 ['some', 'dasd','dasd','dasdas','dasdas','dasd','das','dsad']
。
最好的方法是什么?
I have strings like this 'some-dasd\dasd-dasdas\dasdas-dasd-das\dsad
'.
I need to split the string to array by two different symbols '\'
and '-'
, so I would like to get the array ['some', 'dasd', 'dasd', 'dasdas', 'dasdas', 'dasd', 'das' ,'dsad']
.
What is the best way to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
应该可以解决问题。
should do the trick.
您可以使用正则表达式分割字符串:
You can split string using regexp: