Geekpedia Tutorials Home

Building a C# Chat Client and Server

Building a C# Chat Client and ServerA step by step tutorial teaching you how to create your own chat client and chat server easily in C#, for local networks or the Internet.

in C# Programming Tutorials

Getting Hard Drive Information

Getting Hard Drive InformationA C# tutorial showing you how to make use of WMI to extract information on disk drives, such as model, capacity, sectors and serial number.

in C# Programming Tutorials

UPS Shipping Calculator

UPS Shipping CalculatorThis tutorial will teach you how to calculate the shipping cost based on the weight, height, length and depth of the box, the distance and the UPS service type.

in PHP Programming Tutorials

Create Your Own Rich Text Editor

Create Your Own Rich Text EditorCreating a Rich Text Editor using JavaScript is easier to do than you might think, thanks to the support of modern browsers; this tutorial will walk you through it.

in JavaScript Programming Tutorials
Search
Tutorials
Programming Tutorials
IT Jobs
From CareerBuilder

Validate String For Positive Integer Values

A very simple way to validate a string for positive integer values using C# and regular expressions.

On Saturday, October 18th 2008 at 05:00 AM
By Andrew Pociu (View Profile)
*****   (Rated 4.2 with 5 votes)
Contextual Ads
More C# Resources
Advertisement
  1. using System.Text.RegularExpressions;
  2.  
  3. Regex rxNums = new Regex(@"^\d+$"); // Any positive decimal
  4. if (rxNums.IsMatch("4815162342"))
  5. {
  6.     MessageBox.Show("Numeric.");
  7. }
  8. else
  9. {
  10.     MessageBox.Show("Not numeric.");
  11. }
Digg Digg It!     Del.icio.us Del.icio.us     Reddit Reddit     StumbleUpon StumbleIt     Newsvine Newsvine     Furl Furl     BlinkList BlinkList

Rate Rate this code snippet
Comment Current Comments
by Mohan on Monday, December 29th 2008 at 07:36 AM

It's was nice tutorial.

by syabac on Tuesday, July 6th 2010 at 05:25 AM

thanks for sharing.

but what if the string is " 1235"?
the pattern should be changed

Regex rxNums = new Regex(@"^\ ?\d $");

by syabac on Tuesday, July 6th 2010 at 05:27 AM

*the right code

Regex rxNums = new Regex(@"^ \ ? \ d $");

*remove the space char on the string.


Comment Comment on this tutorial
Name: Email:
Message:
Comment Related Source Code
There is no related code.

Comment Related Tutorials
There are no related tutorials.

Jobs C# Job Search
My skills include:

Enter a City:

Select a State:


Advanced Search >>
Sponsors
Discover Geekpedia

Other Resources