Is it possible to check If no numbers were found in a string when using Regex?
so if I am doing this:
String temp;
String myText = "abcd";
temp = Regex.Match(myText, @"\d+").Value;
How do i check that no numbers were found?
Do i just do this:
if (temp = ""){
//code
}