Does Notepad++ support non-greedy regular expressions?
For example for text:
abcxadc
I want to get parts using pattern:
a.+c
And now I get whole string instead of 2 parts. I tried to use the '?' operator but without success.
|
Does Notepad++ support non-greedy regular expressions? For example for text:
I want to get parts using pattern:
And now I get whole string instead of 2 parts. I tried to use the '?' operator but without success. |
||||
|
|
|
Notepad++ doesn't support the lazy
Which specifies: match |
|||
|
|
|
Update: from version 5.9 (build time Mar, 31. 2011), Notepad++ supports non greedy regular expressions (new scintilla 2.5). |
|||
|
|
|
I did the following with Notepad++ V6.1.5 (It has now PCRE regex engine):
and got 2 parts ( Lazy(non-greedy) searches are now possible. |
||||
|
|