Community

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

    Replace specific word between words in string

    General Discussion
    4
    17
    1330
    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.
    • PeterJones
      PeterJones @Program111 last edited by

      @Program111,

      @guy038 I still did not get your solution. just tell me one line reply and solution pleae.

      By “did not get”, do you mean you did not receive (“get”) the solution that Guy has posted in this thread, or that you did not understand (“get”) the solution. In the first 6 bullet points (before the Notes), Guy told you the exact steps you need to take to run this search-and-replace. The Notes were just Guy’s way of helping you learn what those 6 steps do.

      Did you try those 6 steps? If not, why not? If so, did it work for you? If it didn’t work, did you follow his instructions to use Replace All exclusively (not hit the Replace button) – because with \K in the regular expression, you must use Replace All to work. If it’s not working for you, what results did it give you, compared to what results were you expecting?

      Please follow the advice below for how to format your post, present example text, etc.

      ----

      Do you want regex search/replace help? Then please be patient and polite, show some effort, and be willing to learn; answer questions and requests for clarification that are made of you. All example text should be marked as plain text using the </> toolbar button or manual Markdown syntax. Screenshots can be pasted from the clipboard to your post using Ctrl+V to show graphical items, but any text should be included as literal text in your post so we can easily copy/paste your data. Show the data you have and the text you want to get from that data; include examples of things that should match and be transformed, and things that don’t match and should be left alone; show edge cases and make sure you examples are as varied as your real data. Show the regex you already tried, and why you thought it should work; tell us what’s wrong with what you do get… Read the official NPP Searching / Regex docs and the forum’s Regular Expression FAQ. If you follow these guidelines, you’re much more likely to get helpful replies that solve your problem in the shortest number of tries.

      1 Reply Last reply Reply Quote 1
      • Program111
        Program111 last edited by

        @guy038 said in Replace specific word between words in string:

        Wrap around option

        where is step 6? the “Replace All”? NO I did not .
        I don’t know what to put int he “replace” field to remove the “, TRUE);”

        Alan Kilborn 1 Reply Last reply Reply Quote 0
        • Alan Kilborn
          Alan Kilborn @Program111 last edited by

          @Program111 said in Replace specific word between words in string:

          where is step 6? the “Replace All”?

          3e313835-987c-476b-bc16-fc1d116970db-image.png

          I don’t know what to put int he “replace” field

          d82649bc-cd39-4de2-a308-71e352829c9d-image.png

          Perhaps “Leave EMPTY” is bad terminology, if it wasn’t empty in the first place. Instead try:

          • put caret in Replace with box
          • press Ctrl+a (to select all)
          • press Delete
          PeterJones 1 Reply Last reply Reply Quote 2
          • guy038
            guy038 last edited by

            Hi, @program111, and All,

            Oh, my bad ! I was mistaken in my previous post ! I wrote :

            • Open the Replace dialog ( Ctrl + F )

            I should have written :

            • Open the Replace dialog ( Ctrl + H )

            Sorry,

            BR

            guy038

            1 Reply Last reply Reply Quote 1
            • PeterJones
              PeterJones @Alan Kilborn last edited by

              @Program111 ,

              Maybe a picture will help:

              5aab12b4-8d3d-498b-bc56-f87409e22a87-image.png

              If you start with this data:

              define("EW_UNFORMAT_YEAR", 50, TRUE);
              define("EW_UNFORMAT_YEAR", 51, TRUE);
              define("EW_UNFORMAT_YEAR", 52, TRUE);
              define("EW_UNFORMAT_YEAR", 53, TRUE);
              define("EW_UNFORMAT_YEAR", 54, TRUE);
              define("EW_UNFORMAT_YEAR", 55, TRUE);
              define("EW_UNFORMAT_YEAR", 56, TRUE);
              define("EW_UNFORMAT_YEAR", 57, TRUE);
              define("EW_UNFORMAT_YEAR", 58, TRUE);
              define("EW_UNFORMAT_YEAR", 59, TRUE);
              define("EW_UNFORMAT_YEAR", 60, TRUE);
              define("EW_UNFORMAT_YEAR", 61, TRUE);
              define("EW_UNFORMAT_YEAR", 62, TRUE);
              

              After you’ve hit Replace All, you will end up with:

              define("EW_UNFORMAT_YEAR", 50);
              define("EW_UNFORMAT_YEAR", 51);
              define("EW_UNFORMAT_YEAR", 52);
              define("EW_UNFORMAT_YEAR", 53);
              define("EW_UNFORMAT_YEAR", 54);
              define("EW_UNFORMAT_YEAR", 55);
              define("EW_UNFORMAT_YEAR", 56);
              define("EW_UNFORMAT_YEAR", 57);
              define("EW_UNFORMAT_YEAR", 58);
              define("EW_UNFORMAT_YEAR", 59);
              define("EW_UNFORMAT_YEAR", 60);
              define("EW_UNFORMAT_YEAR", 61);
              define("EW_UNFORMAT_YEAR", 62);
              

              If you ignore this advice, and just hit Replace, it won’t work.

              Alan Kilborn 1 Reply Last reply Reply Quote 1
              • Alan Kilborn
                Alan Kilborn @PeterJones last edited by

                @PeterJones

                I suppose it is easy enough to remove the Replace All requirement, with this solution:

                Open the Replace dialog by pressing Ctrl+h and then set up the following search parameters:
                Find what box: (?-si)(define\(".+?),\x20TRUE(?=\);)
                Replace with box: \1);
                Search mode radiobutton: Regular expression
                Wrap around checkbox: ticked
                In selection checkbox: unticked
                Option checkboxes not mentioned are typically not important to the operation, but should in general be unticked.
                Then press the Replace button, one or many times.

                I typically don’t like to provide \K in solutions posted here, due to the Replace All -being-needed limitation. Of course, sometimes \K is absolutely required for a successful solution, but in this case using it only buys you the need to not capture group anything and the ability to leave the Replace with field empty (which in itself can be confusing: it looks empty but maybe it has some spaces in it).

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

                  Hello, @program111, @peterjones, @alan-kilborn and All,

                  @alan-kilborn :

                  Thanks for proposing the right solution ! I confess that I’m rather annoying to always look for the minimum S/R syntax :-(

                  I realize, finally, that the benefit of such a practice is really small ! Indeed, by removing the \K syntax and adding the ( ), to create the group that contains everything that matched before \K, the search string contains the same number of characters, anyway ! Only the replacement field contains a few elements, instead of an empty field !

                  But the fact that the Replace button is fully functional is surely less confusing for some OP, who are not aware of some specificities of our regex engine :-))

                  Best Regards,

                  guy038

                  Alan Kilborn 1 Reply Last reply Reply Quote 1
                  • Alan Kilborn
                    Alan Kilborn @guy038 last edited by

                    @guy038

                    Do we have any further insight as to why \K doesn’t work with normal Replace?
                    I thought maybe since some time has gone by since it was last discussed…

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

                      Hi, @alan-kilborn,

                      I’ve just tested with the old enhanced regex engine of François-R Boyer + Notepad++ v6.9 and, unfortunately, the behaviour is strictly identical : any hit on the Replace button does not produce anything :-((

                      But it’s definitively a bug !

                      Cheers,

                      guy038

                      1 Reply Last reply Reply Quote 2
                      • Program111
                        Program111 last edited by

                        @Alan-Kilborn said in Replace specific word between words in string:

                        \1);

                        @Alan-Kilborn @PeterJones @guy038 thank you for your help. it worked. I appreciate it.

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