HI
I have the data in following formats
Date:1/Jan/2019
Date: 1/1/19
Date:01/01/19
Date:01/1/2019
Date:01/01/2019 how to extract the date value using one regex value
Could you please explain more?
Are you able to extract all these content as string?
If yes, You try Splitting the content using Newline and
strVar = “Date:1/Jana/2019”
strDateValue = strVar.split({“:”},stringsplitoptions.removeemptyentries)(1)
Agreed. Your Matches activity returns a list of results so you can use For loop to get to all of them
just learning regex now. Thank you ![]()
