Editing .prjs Wtih Notepad++
Is there a way to do a find and replace for lines of text.
I.e. find "URL=*****" where it finds the text "URL=" and ignores anything after, but replaces the whole line!
and replace with "URL=URL1.com"
I know how to do a simple find and replace in files, but can't work out to find the prefix "URL=" and then replace the whole line with a new one. It's just that the URL=field changes all the time..so maybe some sort of wildcard expression?
Comments
search for: ^pop3 server=.*
replace with: pop3 server=%file-...%
Thats a regular expression. I think there is be an option in notepad++ that you have to check to search with that.
^ = starting with
. = any char
* = any length of the previous char.