Please use this
In Assign activity(left variable type is matchcollection)
Matchcol = System.text.RegularExpressions.Regex.Matches(str,"(?<=\<locdate\>).*(?=\<\/locdate\>)")
To access the matchcol
- Use for loop and ‘in’ argument will be ‘matchcol’ and change for loop type argument to ‘system.text.regularexpressions.regex.match’
- Inside the loop use log message with
currentitem.value
Cheers
Cheers