10-31-2011، 02:38 PM
يك مثال ساده از Regular expression كه چك مي كند آيا رشته ورودي تماما عدد است يا تماما حرف
کد:
using System.Text.RegularExpressions;
...
const string ALL_NUMERIC_PATTERN = "[a-z|A-Z]";
static readonly Regex All_Numeric_Regex =
new Regex (ALL_NUMERIC_PATTERN);
static bool AllNumeric ( string inputString )
{
if (All_Numeric_Regex.IsMatch ( inputString ))
{
return false;
}
return true;
}