gpt4 book ai didi

vb.net - 如何检查字符串是否仅包含数字?

转载 作者:行者123 更新时间:2023-12-03 09:32:33 25 4
gpt4 key购买 nike

Dim number As String = "07747(a)"

If number.... Then

endif

我希望能够检查字符串中是否只有数字,如果它仅包含数字,然后运行if语句中的内容?我要用什么检查来检查字符串是否仅包含数字并且不包含alpha ot()等。

我要检查的是手机号码,因此应接受077 234 211,但不应接受其他字母

最佳答案

您可以使用这样的正则表达式

If Regex.IsMatch(number, "^[0-9 ]+$") Then

...

End If

关于vb.net - 如何检查字符串是否仅包含数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6138896/

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