Community

    • Login
    • Search
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search

    ignore double filtering in same line when find word

    General Discussion
    3
    3
    804
    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.
    • Junseok Park
      Junseok Park last edited by

      when I find some word with find all function then there are several lines in find result window if the word is several times in same line.
      how could I fix it ?

      Scott Sumner 1 Reply Last reply Reply Quote 0
      • Scott Sumner
        Scott Sumner @Junseok Park last edited by Scott Sumner

        @Junseok-Park

        You can’t. It isn’t broken. That’s how it is designed to work. However, you could craft a regular expression search to find just ONE of the matches per line if that’s what you want.

        1 Reply Last reply Reply Quote 0
        • Jim Dailey
          Jim Dailey last edited by Jim Dailey

          @Junseok-Park
          For example, searching in regular expression mode for

          XYZ.*\K$
          

          would find every line containing “XYZ” (one time only, no matter how many times “XYZ” was on a line) and nothing in the find window would be highlighted.

          If you want to highlight the first “XYZ” and everything after it, leave the “\K” out of the regex.

          1 Reply Last reply Reply Quote 2
          • First post
            Last post
          Copyright © 2014 NodeBB Forums | Contributors