gpt4 book ai didi

javascript - 如何检查javascript字符串中是否存在数字

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:19:15 26 4
gpt4 key购买 nike

我需要一个 regex 来检查字符串只包含 A-Za-z特殊字符 但是 不是数字即(0-9)。感谢您的帮助。

最佳答案

你可以试试这个正则表达式:

^[^\d]*$

和示例:

var str = 'test123';
if ( str.match(/^[^\d]*$/) ) {
alert('matches');
}

关于javascript - 如何检查javascript字符串中是否存在数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6187920/

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