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):
This RegExp String is
.replace("/([a-zA-Z][a-z]*)/g",...);