I just want to know, whether a String variable contains a parsable positive integer value. I do NOT want to parse the value right now.
Currently I
Maybe this can help
string input = "hello123world"; bool isDigitPresent = input.Any(c => char.IsDigit(c));
answer from msdn.