Notifications
Clear all
Topic starter
Hello,
I think I might have already asked this at some point, but just checking again.
Does anyone know if there is a way to search the contents of a string by using wildcards?
Examples #1:
TextString = "The patient was seen on 3/14/2014"
Match(TextString, 1, "%/%%/%%%"
Basically using wildcards to find the date within a string.
Posted : March 7, 2016 10:00 am
I believe you would have to know the specific date. It searches for a text match I believe.
Posted : March 8, 2016 11:52 am
what I would do is use a match function to search for the text "/2014", "/2015", and "/2016". You can have your function search as far back as you need but thats the only thing that comes to mind.
Posted : March 9, 2016 11:22 am