I’m working on a python script which retrieves values from an sdict as a string value. Many of the returned values contain a timestamp depending on the sdict, which is a tad annoying.
Eg. <2006-12-20 00:10:24 Cattle is a tree>
I cannot for the life of me, figure out how to remove the 2006-12-20 00:10:24 from the returned value. Has anyone got any ideas? I was thinking I could strip anything between – characters. However, the returned values often contain – throughout.
This is a good candidate for using regular expressions.