I have a regular expression in JavaScript to split my camel case string at the upper-case letters using the following code (which I subsequently got from here):
"MyCamelCaseString".replace(/([a-z](?=[A-Z]))/g, '$1 ')
outputs:
"My Camel Case String"