Hi!
I am trying to use CamelCase to separate words in order to make title properly.
Some of these strings are also with number. For example: 1962NBAFin4als
becomes NBA finals
. So it is just ignoring numbers.
I tried to do some research in internet, but I haven't found anything helpful.
Is it a problem of CamelCase??
My java code is:
String fName = Utils.unCamelCase(myString);
Thanks in advance