What is the best way to split a String in jQuery from the first found number.
Example: Speelhof(STE) 0 /W301
I want to split the string in 2 parts (the split must happen on the first found number)
Result should be 2 parts:
Speelhof(STE) and 0 /W301
The strings can differ with different numbers, so I would need a way to substring from any number...
Can anyone help me out? Thanks!