gpt4 book ai didi

javascript - 正则表达式检查文本框中的字符串

转载 作者:行者123 更新时间:2023-12-02 19:19:17 27 4
gpt4 key购买 nike

我有一个文本输入字段,我想检查用户在其中输入的内容。我想允许他们输入带有或不带有美元的货币金额。他们应该能够输入:

$12
$12.0
12
12.0
$ 12.0

不知道我该怎么做。我认为正则表达式可能有帮助,但我不确定如何做到这一点。

最佳答案

基本正则表达式。

(/^\$?\s?\d+(\.\d+)?$/).test("$12.0");


/ -Beginning of Reg Exp
^ - Start of line
\$? - Match a $ or not
\s? - Match a space or not
\d+ - match one or more numbers
(\.\d+)? - match a decimal point followed by more numbers
$ - match end of a line
/ - end of reg expression

这会失败

12..0

因为它们不在您可能的解决方案中

关于javascript - 正则表达式检查文本框中的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12733727/

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