#19502
Pangius
Participant

With the “Find Extract All” Method it Copies the whole Line where the Search Term was found – which is good for some instances.

However in some instances it would be good to just copy each Search Instance on to a New Line.

For example to Find the Date (in the follow text) when written in the Day-Month-Year Format via RegEx is “[0-9].*?2014″:

On the 1 June 2014 travelled to Australia.
On the 2 June 2014 travelled to New Zealand.

Using the RegEx “[0-9].*?2014” and pressing “Extract All” will just return the original Text (i.e. each line that contains the Search Term):

On the 1 June 2014 travelled to Australia.
On the 2 June 2014 travelled to New Zealand.

Using the RegEx “[0-9].*?2014” and pressing “Find All” => then Copy all Found Matches, and Pasting the results into a New Text Document – will put all the Search Results on to the 1 Line:

1 June 20142 June 2014

Hence it would be good to have a Method to Extract All to just Extract each Search Result to a New Line e.g.

1 June 2014
2 June 2014