I want to split two combined strings. First characters are upper char like FirstnameSurname.
I tried SPLIT function, but i couldn’t.
Thank you.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Probably the not most elegant solution, but if one can assume that there are only two uppercase characters in the string, I was able to split FirstnameSurname this way (The string was in A4 cell):
B4=RegExExtract(A4, "[\p{Lu}][\p{Ll}]+")B5=RIGHT(A4, LEN(A4) - LEN(B4))Edited to support Unicode for non-English characters, like explained in here. (Turns out Google Spreadsheet doesn’t support full Unicode property names, like
\p{Uppercase_Letter})