How can I remove all the digits from the start of a string.
Before:
234234adsf3fs3fs34
After:
adsf3fs3fs34
Try this statement:
string.TrimStart("1234567890")
Hope that helps!