'abcDef' splitOn: [ :c | c isUppercase ]
>>> ‘abc’ ‘ef’

but I need

'abcDef' splitOn: [ :c | c isUppercase ]
>>> ‘abc’ ‘Def’

:(

Reply via email to