如果 textBox1 包含整数

发布于 2024-08-03 05:27:38 字数 79 浏览 3 评论 0原文

我只有一个简单的问题...如何检查文本框或字符串是否包含整数?

请不要代码,也许只是一两个提示:D

谢谢大家:)

I just have a simple question... How do I check to see if a textbox or a string contains an Integer?

please no code just maybe a hint or two :D

thanks all :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(9

鹿童谣 2024-08-10 05:27:38

提示 1:看看 int 的静态方法...有 2 个方法

提示 2:尝试正则表达式

hint 1: have a look on the static methods of int... there are 2 methods

hint 2: try regex

逆流 2024-08-10 05:27:38

int.TryParse( ....

int.TryParse( ....

谜兔 2024-08-10 05:27:38

使用正则表达式模式。

Use regular expression pattern.

没有心的人 2024-08-10 05:27:38

提示:Int32 中有一个方法,如果传递的对象不是整数,则返回 false。

Hint: There is a method in Int32 that returns false if passed object is not an integer.

梦回梦里 2024-08-10 05:27:38

使用此正则表达式模式来验证文本是否仅包含数字:

^[0-9]+$

无效时,意味着存在非数字字符。

正则表达式 正则表达式 = new Regex("^[0-9]+$");

正则表达式.IsMatch(textbox1.Text);

use this regex pattern to validate if the text contains numbers only:

^[0-9]+$

when invalid, means that there is non numeric chars.

Regex regex = new Regex("^[0-9]+$");

regex.IsMatch(textbox1.Text);

2024-08-10 05:27:38

使用正则表达式检查字符串是否包含整数:

    if (Regex.IsMatch(yourString, "\\d"))
    {
        // Do your stuff
    }

use regular expressions to check if the string contains an integer :

    if (Regex.IsMatch(yourString, "\\d"))
    {
        // Do your stuff
    }
剧终人散尽 2024-08-10 05:27:38

提示 - textox 中的值是一个字符串,尝试将其解析为 int,如果引发异常 - 它不是整数

编辑: 实际上有一个方法可以做到这一点 - Int32.TryParse

A hint - The value in the textox is a string, try to parse it to int and if exception is raised - it is not an integer

EDIT: Actually there is a method which does that - Int32.TryParse

魂牵梦绕锁你心扉 2024-08-10 05:27:38

您可以尝试 int.TryParse 或 LINQ。不过,最好的、可能也是最干净的解决方案是 RegEx。

you can try int.TryParse or LINQ. The preferable and probably cleanest solution would be a RegEx, though.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文