Print the output of a regular expression

I have output from Matches activity, I need to print it out.
If i assign to string and write line - i get enum value.
How do i convert it to string

System.Collections.Generic.IEnumerable<System.Text.RegularExpressions.Match>H

Hi, you can do like this:
String.Join(Environment.NewLine, outRegex)

1 Like

With matches as your Matches activity result

String.Join(Environment.NewLine, matches.OfType(Of Match).Select(Function(m) m.Value))

2 Likes

Thank you for the solution