Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I would like to add “||” to the beginning and end of every line containing ", 2017 @ "
Example line: Saturday, March 31, 2017 @ 21:17:07
Example result: ||Saturday, March 31, 2017 @ 21:17:07||
@BecauseICanTBH
find what: ^.*, 2017 @.*$ replace with ||$0|| and of course checking regular expression.
^.*, 2017 @.*$
||$0||
Thank you!