How can I break up a string into new string variables using the uppercase letters in the string as the delimiters? For example, I have a name variable that looks like: JohnSmith. I want to transform it into two variables -- first = John, last = Smith. I tried scan (varname, _n_, ' ', ku) but it only returns the upper case letters not the lower case letters following. Thanks!
... View more