Quote:
Originally Posted by ownedbycats
I accidentally wiped out my Audit Log so I was copying the values to themselves so that AL had a record of them. I figured out what I had to do though.
|
It works by accident.
Searching for /1 finds nothing because that character sequence doesn't exist in an ISO date. Replacing with /1 would replace with exactly that text, /1, but since nothing was found, nothing was replaced.
You probably wanted search for ^(.*)$ and replace with \1. This matches the entire source and replaces it with itself