c#
StatCounter
View My Stats
Friday, April 18, 2008
Checking Numeric (Or) Not using Regular Expression
Checking Numeric (Or) Not using Regular Expression
const string ALL_NUMERIC_PATTERN = "[a-z|A-Z]";
static readonly Regex All_Numeric_Regex =new Regex(ALL_NUMERIC_PATTERN);
All_Numeric_Regex .IsMatch(string Value);
Newer Posts
Older Posts
Home
Subscribe to:
Comments (Atom)
Name value collection in C#
Name value collection in C# The name value collection is same like the HashTable. We can set the Object value and the Key to that par...
What are Structural Design Patterns?
What are Structural Design Patterns? A structural design pattern establishes a relationship between entities. Thus making it easier for...
Creating a Cookie in ASP.NET
Creating a Cookie in ASP.NET #region Creating Cookies HttpCookie JayaCookie = Request.Cookies["CookieExample"]; ...