如何檢查特定字符串以查看它是否包含一系列子字符串? 具體而言是這樣的:檢查包含子字符串列表的字符串
public GetByValue(string testString) {
// if testString contains these substrings I want to throw back that string was invalid
// string cannot contain "the " or any part of the words "College" or "University"
...
}
取決於您將來如何看待這種變化。正則表達式可能是一個好的開始。你有嘗試過什麼嗎? – Jon
不知道從哪裏開始......我的數據訪問層使用輸入的字符串進行搜索......如果字符串包含「the」或「college」或「university」這些單詞的任何部分 - 例如:「 col「或」uni「 - 那麼返回的行太多,太泛化。就增長而言,我只關心這三個詞。我在DAL中使用Linq to SQL –