How can i find rows in DataTables according to row value
问题 I've got a DataTable in which there could be values in a column which looks like x:1 x:2 a:1 a:2 etc... but they could also look like x* or a* . In my code I'm getting a full value to search for (for example x:1 ), but the row itself can contain a value like x* in that column. can i somehow use the Select method to search for the row? for now it looks something like this: strSelect = string.Format("[{0}]='{1}'", colName, ValueToSearch); rows = tempTable.Select(strSelect); but of course that