Hey guys, they are just wondering if there is a way to check if a string contains any numeric digits in it without using regular expressions. I thought to just break it into an array and run a search on it, but something tells me it's easier.
string aString = "The number 4"
If (aString contains a number) Then enter validation loop
Else return to main
"The string contains a number. Are you sure you want to continue?"
source
share