Delete with Replace mode!
-
Hi. I have multiple text like"alex2,alex3,alex4,alex…" how can I remove all of this by finding only alex word and to delete “alex2,alex3,alex4,alex…”?? Please tell me how. Thanks
-
Use a regular expression alex\d+ (one or several digit) and replace with empty string or whatever
-
sorry @guy038 I stole the regex star from you ;-)