Split string on single forward slashes with RegExp

前端 未结 4 553
夕颜
夕颜 2020-12-19 21:46

edit: wow, thanks for so many suggestions, but I wanted to have a regexp solution specifically for future, more complex use.

I need support with splitting text strin

4条回答
  •  伪装坚强ぢ
    2020-12-19 22:24

    Text to columns will work. Another option, if you want to keep the original value, is to use formulas: in B1

    =left(a1,find(":",a1)-1) 
    

    in C1

    =mid(a1,find(":",a1)+1,len(a1))
    

提交回复
热议问题