갑자기 생각대로 정규식이 안될때가 있었음.

// (시작하고 중간에 -가 있고 )로 끝나는 정규식 확인.
string strPattern = "^\\(.*[\\-].*\\)$";
if (System.Text.RegularExpressions.Regex.IsMatch(dtResult.Columns[i].ColumnName, strPattern)) continue;

Posted by 말없제이
,