I have nearly 9,000 lines in a text file in Notepad++
How do I find all lines that say
source: DATA
and INSERT these 2 lines below that line?
delete:
password: ACTUALPASSWORD
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use
Ctrl-Hthen earch forsource: DATAreplace withsource: DATA\r\ndelete:\r\npassword: ACTUALPASSWORD\r\nThis way you preserve new line formats.