[Solved] Check if the first chars are digits


How can I remove every digit at the beginning?

Linq SkipWhile would be one way

string result = string.Concat("1234ABC123".SkipWhile(char.IsDigit)); // "ABC123"

solved Check if the first chars are digits