gpt4 book ai didi

javascript - 从Javascript中的字符串中提取以某个字符开头的单词

转载 作者:行者123 更新时间:2023-11-28 04:17:26 24 4
gpt4 key购买 nike

我有一个如下所示的字符串

var str = "This product price is £15.00 and old price is £19.00";

我需要获取以“£”开头的单词;结果应为“£15.00”“£19.00”我如何在 Javascript 中执行此操作?

最佳答案

使用 String#match 方法

var str = "This product price is £15.00 and old price is £19.00";

// if `£` follows non-digit also then use
console.log(str.match(/£\S+/g));
// if `£` follows only number with fraction
console.log(str.match(/£(\d+(\.\d+)?)/g));

关于javascript - 从Javascript中的字符串中提取以某个字符开头的单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38561289/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com