Community
    • Login

    RegEx This but not that

    Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
    regex
    3 Posts 2 Posters 130 Views
    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.
    • Robert Or Janet DiebelR
      Robert Or Janet Diebel
      last edited by

      I wish to search text for all two character words, and then eliminate “mu, ku, ha, ou”

      {space}[a-zA-Z][a-zA-Z]{space} works to find all.
      How do I get rid of the above ones

      Mark OlsonM 1 Reply Last reply Reply Quote 0
      • Mark OlsonM
        Mark Olson @Robert Or Janet Diebel
        last edited by Mark Olson

        @Robert-Or-Janet-Diebel
        Try (?-i)\b(?!mu|ku|ha|ou)[a-zA-Z]{2}\b (replace the \b with \s+ if you want to match surrounding space too)

        Robert Or Janet DiebelR 1 Reply Last reply Reply Quote 5
        • Robert Or Janet DiebelR
          Robert Or Janet Diebel @Mark Olson
          last edited by

          @Mark-Olson Thanx. Your time and effort is much appreciated

          1 Reply Last reply Reply Quote 0
          • First post
            Last post
          The Community of users of the Notepad++ text editor.
          Powered by NodeBB | Contributors