Hi All,
I have a column populated with something like the following:
1.2.3.4:10017
1.2.4.4:49275
1.2.5.4:12343
How do I do a find and replace such that I get back:
1.2.3.4
1.2.4.4
1.2.5.4
Many thanks,
-T
Hi All,
I have a column populated with something like the following:
1.2.3.4:10017
1.2.4.4:49275
1.2.5.4:12343
How do I do a find and replace such that I get back:
1.2.3.4
1.2.4.4
1.2.5.4
Many thanks,
-T
search for :\d+$
replace with nothing
Did you enable regular expressions? Indeed, if you didn’t cut the screenshot so badly, we could see that ourselves…
did you check [x] regular Expression ?
if already done, change the search expression to
:\d+\s*?$
… and WHY did you not use the Replace All Button on the right??
Ah bugger. I clicked find instead of replace! Thank you for the second pair of eyes.