gpt4 book ai didi

javascript - 检查输入字符串是否只有数字且最大长度为 4

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

我需要检查输入字符串是否正好有 4 个数字,以防止输入无效字符且长度超过 4

// maximum of 4 digits
const state = parseInt(value, 10) > -1
? parseInt(value, 10).toString().substring(0, 4)
: ''

// save value if 4 digits or less - which means user is typing...
saveValue(state && state.length <= 4 ? state : '')

但是开头不可能是零...感觉有点复杂...

最佳答案

短而快。您可以使用正则表达式:

/^[0-9]{1,4}$/.test(yourVariable);

console.log(/^[0-9]{1,4}$/.test('1')); // true
console.log(/^[0-9]{1,4}$/.test('1000')); // true
console.log(/^[0-9]{1,4}$/.test('a')); // false
console.log(/^[0-9]{1,4}$/.test('10000')); // false

关于javascript - 检查输入字符串是否只有数字且最大长度为 4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59678440/

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