I want to split text using regex, but I don't want the number (0-100) and character (A-Z) removed.
I put the code below that I used to split strings
firstthing.split(/[0-100][A-Z]/g)
I want to split text using regex, but I don't want the number (0-100) and character (A-Z) removed.
I put the code below that I used to split strings
firstthing.split(/[0-100][A-Z]/g)