Community

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

    regex: match whole content of a file that contains a particular WORD

    Help wanted · · · – – – · · ·
    2
    3
    1252
    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.
    • Robin Cruise
      Robin Cruise last edited by

      hello, I want to select and delete whole content of those files that contains word xxx.

      I try this regex (?s)(.*?MY_WORD).*$ or [^"]+(MY_WORD)[^"]+ and works in notepad++, but doesn’t work in TextCrawler. Maybe someone will give me another solution.

      1 Reply Last reply Reply Quote 0
      • guy038
        guy038 last edited by

        Hello, @robin-cruise,

        To my mind, the shorter SEARCH regex should be (?s).*\bMY_WORD\b.*

        And, as you want to delete the contents, of all the files, which contains the word MY_WORD, just leave the REPLACE box empty

        Cheers,

        guy038

        1 Reply Last reply Reply Quote 0
        • Robin Cruise
          Robin Cruise last edited by

          thank you

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