Filter data table with regex for value

Hi,

Unfortunately, FilterDataTable activity doesn’t support regex.
In this case, we can use LINQ where method and regex as the following, for example.

dt = dt.AsEnumerable.Where(Function(r) System.Text.RegularExpressions.Regex.IsMatch(r("ColumnName").ToString(),"regex pattern")).CopyToDataTable

Hope this helps you.

Regards,