Suppose I have strings like the following :
OneTwo
ThreeFour
AnotherString
DVDPlayer
CDPlayer
I know how to tokenize the camel-case ones, except the "DVDPlayer" and "CDPlayer". I know I could tokenize them manually, but maybe you can show me a regex that can handle all the cases?
EDIT: the expected tokens are :
OneTwo -> One Two
...
CDPlayer -> CD Player
DVDPlayer -> DVD Player