I am invoking a worflow file in which I am performing a regex match. The match returns an array of strings that match my pattern.
What should be my argument type in the parent workflow through which I can iterate through the return type of the Matches activity
Hi,
Can you try IEnumrable<Match> type?

Regards,
1 Like
@Yoichi is right.
You can easily use .ToString to bring the Match DataTypes to String.
