gpt4 book ai didi

javascript - 正则表达式问题 - 替换 float ,而不是整数

转载 作者:行者123 更新时间:2023-11-30 07:41:32 36 4
gpt4 key购买 nike

我想在这个 sting 中删除除 float 之外的所有内容:

string = "1 south african rand is 0.11044"

我是这样做的:

reg = /[^\d+.\d+]/g
console.log string.replace(reg, '')

记录

10.11044

错了,我只想要 xxxx.xxxxx 部分。 1 不是 float ,所以它不应该是其中的一部分?

我应该怎么改?

最佳答案

试试这个

^((?!\d+\.\d+).)*

有关详细信息,请参阅此答案:Regular expression to match a line that doesn't contain a word?

关于javascript - 正则表达式问题 - 替换 float ,而不是整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16033678/

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