I'm trying to do a simple Replace() on a string that contains dynamic content within (the time output). Example:
Code:
Last message received on 6/26 at 10:35 PM
How can I refer to the time when it's constantly changing?

Code:
strTemp = Replace(strTemp, "Last message received on " & (SOME COMPARISON MAGIC GOES HERE), "")
I looked into the "Like" operator but I don't think a Boolean return value would help me here. Thanks!