gpt4 book ai didi

javascript 字符串 : remove all except numbers and the first "."

转载 作者:行者123 更新时间:2023-11-30 08:36:03 26 4
gpt4 key购买 nike

例如:

“10.0.cm”变为“10.0”

“10.0.m”变为“10.0”

“3”保持为“3”

等...

我试过这个:

values[3].replace(/[^0-9.,]+/, '')

但这仍然留下“.”在数字之后,例如:10.0。

感谢您的帮助...

最佳答案

下面的正则表达式应该可以解决它

values[3].replace(/\.+[a-z]*$/, '')

关于javascript 字符串 : remove all except numbers and the first ".",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31363245/

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