특정 글자 사이에 있는 글자 추출 방법은 뭐가있을까요

Hi @amucotomolrayo

Please use this

In Assign activity(left variable type is matchcollection)

Matchcol = System.text.RegularExpressions.Regex.Matches(str,"(?<=\<locdate\>).*(?=\<\/locdate\>)")

To access the matchcol

  1. Use for loop and ‘in’ argument will be ‘matchcol’ and change for loop type argument to ‘system.text.regularexpressions.regex.match’
  2. Inside the loop use log message with currentitem.value

Cheers

Cheers