> 运动
正则判断字符串是否为正整数的方法(正则判断字符串是否为正整数字)
在生活中,很多人可能想了解和弄清楚正则判断字符串是否为正整数的相关问题?那么关于正则判断字符串是否为正整数的方法的答案我来给大家详细解答下。
以下代码用来判断用户输入的字符串是否为正整数,功能简单,做个备忘。
using System;using System.Text.RegularExpressions;using System.Threading;using System.Windows.Forms;namespace test{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { } private void button1_Click(object sender, EventArgs e) { string a = textBox1.Text; MessageBox.Show(IsZZS(a).ToString()); } /// <summary> /// 判断字符串是否为正整数字 /// </summary> /// <param name=&34;>被判断的字符串</param> /// <returns>true为是,false为不是</returns> public bool IsZZS(string Str) { try { Regex reg = new Regex(&34;); Match ma = reg.Match(Str); if (ma.Success) { return true; } else { return false; } } catch (Exception ErrMsg) { return false; } } }}
温馨提示:通过以上关于正则判断字符串是否为正整数内容介绍后,相信大家有新的了解,更希望可以对你有所帮助。