Add to beginning & end of every line containing string?
-
I would like to add “||” to the beginning and end of every line containing ", 2017 @ "
Example line:
Saturday, March 31, 2017 @ 21:17:07Example result:
||Saturday, March 31, 2017 @ 21:17:07||
-
find what:
^.*, 2017 @.*$
replace with||$0||
and of course checking regular expression.
-
Thank you!