How to exclude a sequence of characters

2011-03-12 Thread Thomas Wiedmann
ins 'test-end' this text location should not be matched. By which regular expression can this search condition be realized? Thomas Wiedmann - To unsubscribe, e-mail: regexp-user-unsubscr...@jakarta.apache.org For addit

Re: How to exclude a sequence of characters

2011-03-22 Thread Thomas Wiedmann
t;mytext-end" are not matched, because they a excluded, but a text like "mytest-xyz" is accepted, because it doesn't end with "-end"? Thomas Wiedmann - To unsubscribe, e-mail:

Re: How to exclude a sequence of characters

2011-03-25 Thread Thomas Wiedmann
egexp Also, I can't recall of the dash needs to be escaped outside a square-bracket operator pair, but it might be interpreted as a range operator here. May be, but what's the solution, i. e. how must the RegExp statement be written, that tex