[WDX] PCREsearch

Discuss and announce Total Commander plugins, addons and other useful tools here, both their usage and their development.

Moderators: Hacker, petermad, Stefan2, white

Post Reply
User avatar
nsp
Power Member
Power Member
Posts: 1935
Joined: 2005-12-04, 08:39 UTC
Location: Lyon (FRANCE)
Contact:

Re: [WDX] PCREsearch

Post by *nsp »

andry81 wrote: 2025-05-22, 01:12 UTC Tried to search bat files for multi line comments:

Plugin: Property: OP: Value:
pcresearch Random String regex (?s)(rem[^\r\n]*\r?\n){3,}
You need to use multi-line (?m) flag to match multiple line. You can also use Ignore case i.
The following expression should work.

Code: Select all

(?mi)(rem[^\r\n]*\r?\n){3,}
Post Reply