You can easily query a DataTable using LINQ, and then you can use the actual Regex in the query to filter it anyway.
Something like that...
var source = myDataTable.AsEnumerable();
var results = from matchingItem in source
where Regex.IsMatch(matchingItem.Field<string>("Name"), "<put Regex here>")
select matchingItem;
var list = results.ToList();
, Regex, , , Regex.
**** ** -
, , , , , DataTable Grid - . , , "" , DataSource ( BindingSource), , . DataTables, , , , , ( , google ).