Search for a string which ends with a Right parenthesis
-
Hi guys,
I want remove all strings like this from a text file
Installing packages: Please Wait ( 104 )
Installing packages: Please Wait ( 105 )
Installing packages: Please Wait ( 106 )So in other words, i want seach for a string wich is starting with “Installing” and ends with “)” and replace it with nothing.
-
Using a regular expression search like this
^Installing.+\)$
should do the job.If you want to understand what this means, please read here.