javascript 迭代字符串

发布于 2024-11-08 04:40:41 字数 209 浏览 0 评论 0原文

我有一个像这样的字符串

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

抹茶夏天i‖ 2024-11-15 04:40:42

基于 John Resig 的“搜索而不替换”方法,我可能会采用类似的方法。

var arr = [];
str.replace(/Cars:\s(\d+)/g, function ($0, num) {
    arr.push(+num);
});

工作演示:http://jsfiddle.net/wCLTe/1

I'd probably go with something like this, based on John Resig's "Search and don't replace" method.:

var arr = [];
str.replace(/Cars:\s(\d+)/g, function ($0, num) {
    arr.push(+num);
});

Working demo: http://jsfiddle.net/wCLTe/1

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文