Home > Software engineering >  formula to split text in 1 cell without delimiter
formula to split text in 1 cell without delimiter

Time:03-22

I was wondering is there any formula on spreadsheet to split text without delimiter?

For example :

Column A : Steven JameKing Ring

Expected Output : Col B : Steven James Col C : King Ring

I really need your help to solve this formula. Thanks!

I have no idea which formula that can solve this problem

CodePudding user response:

Try

=regexextract(A1,"(.*[a-z])([A-Z].*)")

Or:

=split(regexreplace(A1,"([a-z])([A-Z])","$1❄️$2"),"❄️")

CodePudding user response:

try:

=SPLIT(REGEXREPLACE(REGEXREPLACE(A1, "([A-Z])", "×$1"), " ×", " "), "×")

enter image description here

enter image description here

  • Related