How can I use excel function (LEFT/RIGHT/MID) to extract string which sorrounded by same symbol?

前端 未结 4 522
旧时难觅i
旧时难觅i 2021-01-17 02:13

My string is like; eg: A2 column : This is a test string.

Where I want to extract word \'is\'. I know I have to use MID function wi

4条回答
  •  自闭症患者
    2021-01-17 02:35

    Modify thy below formula and try:

    =MID(A1,FIND(" ",A1,1)+1,FIND(" ",A1,FIND(" ",A1)+1)-FIND(" ",A1,1)-1)
    

提交回复
热议问题