gpt4 book ai didi

javascript - 使用javascript中的正则表达式从文本中过滤掉数字

转载 作者:可可西里 更新时间:2023-11-01 02:54:23 26 4
gpt4 key购买 nike

使用 javascript 正则表达式从文本中获取数字的最佳方法是什么..例如....我有“$4,320 text/followme”,我想从中得到 4320。但是,我想在第一次出现字母表或除逗号 ',' 以外的任何非字母表后避免使用数字

所以如果我有 4,320 美元 t234ext/followme 它仍然会返回 4320。输入将始终以 $ 符号开头

所以正则表达式应该返回

 $4,320 text/followme          returns  4320
$4,320 t3444ext/followme return 4320
$4,320 /followme return 4320
$4320 text/followme return 4320
$4320 t3444ext/followme return 4320
$4320 /follow4me return 4320

最佳答案

string.split(/ /)[0].replace(/[^\d]/g, '')

关于javascript - 使用javascript中的正则表达式从文本中过滤掉数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3097048/

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