I want to combine these two expressions: Can you please help on combining the two expressions : First one is regex and second one I want to use filter data table
ExtractDataTable.AsEnumerable.Where(Function(x) System.Text.RegularExpressions.Regex.IsMatch(x(“List price (Quantity)”).ToString,“\d+.\d{2}\d*(?<=[1-9])|\d+.\d{2}”)).CopyToDataTable
ExtractDataTable.AsEnumerable().
Where(Function(row) row.Field(Of String)(“Charges”)=sku_name AndAlso
row.Field(Of String)(“List price (Quantity)”) <> sku_listprice).Count > 0