In my limited experience, I\'ve been on several projects that have had some sort of string utility class with methods to determine if a given string is a number. The idea h
Using .NET, you could do something like:
private bool isNumber(string str) { return str.Any(c => !char.IsDigit(c)); }