Re: How to open a page from the search list.

2021-02-12 Thread Christopher Stone
On 02/11/2021, at 16:44, Omar KN mailto:omne...@gmail.com>> wrote: > So when I perform a search, several pages are listed. Hey Omar, You mean when you perform a Multi-File search? > Now it happens I want to work **on one of those pages** from the search list, > how can I move it away from

Re: Regex question

2021-02-12 Thread Christopher Stone
On 02/12/2021, at 06:07, @lbutlr mailto:krem...@kreme.com>> wrote: > > I seem to be having a Brain Cloud¹ moment, but I am trying to match a pattern > like this: > > foo+(anything)# or foo# and NOT match > > foobar# > foobar+(anything)# > foob# > foob+(anything)# > etc > > foo+# is invalid

Re: Regex question

2021-02-12 Thread Neil Faiman
That looks like foo(\+.*?)?# (Using .*? instead of .* ensures that if you have a line like "foo+bar# foo+mung#", it will match two occurrences, "foo+bar#" and "foo+mung#", rather than a single occurrence with foo followed by the string "bar# foo+mung" followed by #. Regards,

Regex question

2021-02-12 Thread @lbutlr
I seem to be having a Brain Cloud¹ moment, but I am trying to match a pattern like this: foo+(anything)# or foo# and NOT match foobar# foobar+(anything)# foob# foob+(anything)# etc foo+# is invalid and cannot occur in my dataset. Basically, the + is optional, but if it is there, I have to