I would like to remove all digits that come at the start of a string. I would just like to remove the digits at the start, not at the end or the middle.
Example: "123string67" to "string67"
Is there some function or regex I can use to easily do this?