I have some text I need remove from a string, but I cannot use the normal Replace() because it is a timestamp that will always be changing.
Text to remove <09:35:40> (could be any time, but always the same format <HH:MM:SS>).
These time stamps could occur in multiple locations throughout a string, all need to be removed (replaced with "").
I've seen regular expressions used for similar applications on other posts, but I don't really understand them, so cannot validate which one to use for my use case here.
Edit: The < and > also need to be removed.
If feedback could be provided as to the -1, that would be great. Help me improve.