javascript 迭代字符串
我有一个像这样的字符串:
Cars: 5
Fruits: 2
Cars: 1
Carrier: 20
Cars: 20
Hey: 2"
如何将所有 Cars 值放入数组中?
我想以此结束:
[5, 1, 20]
谢谢。
I have a string like this:
Cars: 5
Fruits: 2
Cars: 1
Carrier: 20
Cars: 20
Hey: 2"
How do I get all the Cars values into an Array?
I want to end up with this:
[5, 1, 20]
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
基于 John Resig 的“搜索而不替换”方法,我可能会采用类似的方法。
: 工作演示:http://jsfiddle.net/wCLTe/1
I'd probably go with something like this, based on John Resig's "Search and don't replace" method.:
Working demo: http://jsfiddle.net/wCLTe/1