Split text without removing characters

Viewed 26

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)
0 Answers
Related