I think this is an easy question, but I am not able to find a simple solution (say, less than 10 lines of code :)
I have a String such as \"thisIs
String
\"thisIs
Since String::split takes a regular expression you can use a look-ahead:
String::split
String[] x = "thisIsMyString".split("(?=[A-Z])");