> My next step in my project requires saving a list of all words that
> matched
> the search string.
It sounds like you're looking for the Text -> Process Lines Containing
command. It has an option to copy matches to a new document.
Note that, as stetner pointed out earlier, you'll need to make a minor
change to your expression:
> This does not work in 'process lines containing' for it to work there
> you need to use this (note use $ rather than \r):
> ^(.)(?!\1)(.)(?!\1|\2)(.)$
Hope this helps,
Dennis
I think that Text -> Process Lines Containing will create a list of
all the lines containing the three letter found strings.
However the required list could be created in two "moves" I suspect.
First put a return character before and after each three letter string.
Replace: \r&\r
(& matches all the found expression)
Then use Process Lines Containing to separate out those lines and put
them into a new document.
If this was a regular thing then a nice Text Factory could be created
to do it methinks.
Patrick
I've just noticed that the original thing being worked on is already a
list of words each on a separate line, so "Process Lines Containing"
will be ideal on its own :)
Patrick
Begin forwarded message:
I find that "Process Lines Containing" to be very useful.
Patrick