I have to deal with Strings like: "hasCityName" , "hasAddress", "hasNumberOfStreet".
What I need is to extract the words from those Strings, so if we have: "hasNumberOfStreet", I would like to get: "has", "Number" , "Of" and "Street".
Is there any function for this? or I should go through the string checking when the char changes to uppercase/lowercase and so on?
Thanks in advance.