[Solved] How to remove all the prefix digits in a String value? [duplicate]

[ad_1]

If you want to remove all spaces, hyphens and digits from the beginning of the string, as your examples suggest, this regular expression should do the trick:

^[- 0-9]*

Demo

[ad_2]

solved How to remove all the prefix digits in a String value? [duplicate]