schinken77

Regex help required (include with exclude criteria)

Hi all,

We are trying to create an expression that matches, if the sequence is containing the string "test123".
However it should not match, if the sequence also contains the string "nowEXCLUDE".

Example sequences:
1. "abc def ghi jkl mno" --> should not match
2. "abc def ghi test123 jkl mno" --> should match
3. "abc def ghi test123 jkl nowEXCLUDE mno" --> should not match
4. "abc def ghi jkl nowEXCLUDE mno" --> should not match*

We are using the library CATLRegExp and tried a lot on https://regex101.com/ but are not successful.

Any help is greatly appreciated. Thank you.
Share on Facebook
Share on X (Twitter)
Share on Reddit
Share on Linkedin
Share on Hacker News

Content-ID: 5452109319

Url: https://rootdb.com/forum/regex-help-required-include-with-exclude-criteria-5452109319.html

Printed on: May 20, 2025 at 09:05 o'clock

ghost-in-the-shell
Solution ghost-in-the-shell Jan 18, 2023 at 11:03:09 (UTC)
Goto Top
Schinken77
Schinken77 Jan 18, 2023 at 13:59:04 (UTC)
Goto Top
This works as expected, thank you so much!
ghost-in-the-shell
ghost-in-the-shell Jan 18, 2023 at 20:31:57 (UTC)
Goto Top
You're welcome.
reynolds2301
reynolds2301 Mar 02, 2023 at 04:49:45 (UTC)
Goto Top
Hello,
The solution worked for me thanks to the community and the members for the solution.