Oh, and if you want to keep the time part of the time stamp around, before you do the above, copy Column A into a blank column (let's say Column B).
Do the above to Column A. Then in Column B things are a bit trickier to get rid of the date (because for some stupid reason when you want to trim tot he left the expression match starts from the right so just finding spaces will match to the one before PDT).
But these could clear out the date part if you need:
If all timestamps are from 1/1/2000 and later:
Find what: "*20?? " without quotes: *20??<space>
This essentially says "find the pattern 2 0 any character any character space and then trim that pattern and everything to the left of it."
If all timestamps are from the 1900s and 2000s:
Find what: "*20?? " without quotes: *20??<space>
then repeat with:
Find what: "*19?? " without quotes: *19??<space>
|