data1/data2/data3
How can I find and replace all cells with this format to only result in:
data2
Always the MIDDLE term stays.
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.
Do a search/replace, with `Regular Expressions” selected (see More Options...) with this regex in the search box:
and this as replacement:
This assumes that there are only three “dataX” parts in every cell. If a cell contains data1/data2/data3/data4, its content will be replaced by data3. not data2-