ADD A LINE AT THE END
-
Hello, I am novice to NotePad.
I would need to add a new line of text after certain lines already present (not all of them).
I tried with:
Find what: $
Replace with: \rBut in this way he adds a new line to me at the end of all the lines already present.
How could I do that? Thank you very much!
-
@memytim93
Well you’d have to start by specifying how to identify these “certain lines already present”, i.e., what makes them special? There has to be a pattern to it otherwise it can’t be done.
-
Hello, @memytim19 and All,
Well, it depends on the location where you want to insert this new line :
-
If you want to insert this new line at the very end of current file :
-
SEARCH
\z -
REPLACE
\r\n
-
-
If you vant to insert this new line after the
Nthfirst lines of current file-
SEARCH
(?-s)\A((?:.*\R){N}) -
REPLACE
\1\r\n
-
-
If you want to insert this new line after the line ( or each line ) containing the named string String
-
SEARCH
(?-s)(?<=String)(.*\R) -
REPLACE
\1\r\n
-
For instance, given this INPUT text :
This is a small example of text to test the regexes Hope this test will be OKThe first regex S/R would produce :
This is a small example of text to test the regexes Hope this test will be OKThe regex S/R :
-
SEARCH
(?-s)\A((?:.*\R){5}) -
REPLACE
\1\r\n
gives the following OUTPUT text :
This is a small example of text to test the regexes Hope this test will be OKand, finally, the regex S/R :
-
SEARCH
(?-s)(?<=test)(.*\R) -
REPLACE
\1\r\n
would return :
This is a small example of text to test the regexes Hope this test will be OKBest Regards,
guy038
P.S. :
Of course, select the
Regular expressionsearch mode and tick theWrap aroundoption ! -
-
@guy038 Thank you very much, it’s perfect, I still have a lot to learn
-
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