Hello @ph0enix, @Scott-sumner and All,
if the general template of your data is always :
........@..........;......
Here are, below, 3 other possible regex S/R. Similarly to Scott’s post, you must select the Regular expression search mode, tick the Wrap around option and click on the Replace All button. Note that the Replace with: zone is always Empty
First regex :
SEARCH (?-s)@.+
REPLACE Empty
Results :
123.456.78.0:22000
12.3.456.789:10000
Second regex :
SEARCH (?-s).+?@|;.+
REPLACE Empty
Results :
Name\Name123
NAME\Name-1
Third regex :
SEARCH (?-s).+;
REPLACE Empty
Results :
name
Name2017
Best Regards,
guy038