- AuthorPosts
- December 11, 2008 at 11:21 am #6736owilskyParticipant
Hi,
tested with 8.01:
Open a new document and paste these three lines:
TEST!!!
** TEST !!!
TEST!!!Now goto start of the document and open find dialog with this regex:
(?December 11, 2008 at 5:41 pm #6737Yutaka EmuraKeymasterowilsky wrote:
Hi,tested with 8.01:
Open a new document and paste these three lines:
TEST!!!
** TEST !!!
TEST!!!Now goto start of the document and open find dialog with this regex:
(?<!**) *TESTThere are three parts marked in green, but the last line is never selected when pressing “find down” multiple times.
I reproduced your issue, but this expression is confusing. Can you explain what you are really searching for? Is it possible to show me a simpler example? Thank you.
December 11, 2008 at 6:45 pm #6738owilskyParticipant(?<!**) is negative lookbehind.
I am looking for the word “TEST”, but not if there is ** in front of it. Between ** and TEST may be spaces.
This is for our programming language where ** marks a comment.
So I am looking for TEST which is not commented out.December 12, 2008 at 6:20 pm #6742Yutaka EmuraKeymasterowilsky wrote:
(?<!**) is negative lookbehind.I am looking for the word “TEST”, but not if there is ** in front of it. Between ** and TEST may be spaces.
This is for our programming language where ** marks a comment.
So I am looking for TEST which is not commented out.I will address this issue. Thanks!
December 30, 2008 at 8:09 pm #6806Yutaka EmuraKeymasterYutaka wrote:
owilsky wrote:
(?<!**) is negative lookbehind.I am looking for the word “TEST”, but not if there is ** in front of it. Between ** and TEST may be spaces.
This is for our programming language where ** marks a comment.
So I am looking for TEST which is not commented out.I will address this issue. Thanks!
v8.02 beta 1 fixes this bug. Please try! Thanks!
- AuthorPosts
- You must be logged in to reply to this topic.