Using wildcard characters in Filter datatable wizard

Hi, everyone. I am currently using the filter datatable wizard to filter a datatable. Can anyone suggest me how can i use the * wildcard character to filter the rows, i am attaching a screenshot for the same:
Current value: “PFTDOM_”+item.toString
Required value:“PFTDOM_”+item.toString+“*”(or something like that, so that it finds every possible occurrence from the table.
Like :PFTDOM_ITes_1 or PFTDOM_ITed_21.etc.

@mayank_sinha
giv a try on:

or

using an assign activity
to: output_table

(from d in ExtractDataTable.AsEnumerable
Where d(“V_BATCH_ID”).toString.Trim.StartsWith(“PFTDOM_” + item.toString)
Select d).CopyToDataTable

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.