Community
    • Login

    Exclude word from search filter

    Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
    2 Posts 2 Posters 3.3k Views 2 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • kendall loftinK Offline
      kendall loftin
      last edited by

      Hello,
      I am using the Find feature of npp to find lines that have the word house in it, but I want to exclude versions of the word such as future house, tech house, and bass house.
      What is the regular expression to search for lines containing house but also excluding the words future, tech, bass

      PeterJonesP 1 Reply Last reply Reply Quote 0
      • PeterJonesP Online
        PeterJones @kendall loftin
        last edited by

        @kendall-loftin ,

        You can use negative lookbehinds to guarantee that “the text before house is not future and is not tech and is not bass”:

        • FIND = (?:(?<!future )(?<!tech )(?<!bass ))house
        • Search Mode = Regular expression

        You can combine that with your whole line matcher, which used to be something like (?-s)^.*house.*$ to become:

        • FIND = (?-s)^.*(?:(?<!future )(?<!tech )(?<!bass ))house.*$

        … that will then match the whole line, not just the individual “house” on that line

        -—

        Useful References

        • Please Read Before Posting
        • Template for Search/Replace Questions
        • FAQ: Where to find regular expressions (regex) documentation
        • Notepad++ Online User Manual: Searching/Regex
        1 Reply Last reply Reply Quote 1

        Hello! It looks like you're interested in this conversation, but you don't have an account yet.

        Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

        With your input, this post could be even better 💗

        Register Login
        • First post
          Last post
        The Community of users of the Notepad++ text editor.
        Powered by NodeBB | Contributors