Kotlin Split dengan huruf besar

String s = "thisIsMyString";
String[] r = s.split("(?=\\p{Upper})");
Jolly Jellyfish