要在字符串中搜索子字符串,我可以使用该contains()
函数。但是如何检查一个字符串是否多次包含子字符串?
优化这一点:对我来说,知道有多个结果而不是多少就足够了。
尝试利用快速IndexOf
和LastIndexOf
字符串方法。使用下一个代码片段。想法是检查第一个和最后一个索引是否不同,如果第一个索引不是-1,这意味着字符串存在。
string s = "tytyt";
var firstIndex = s.IndexOf("tyt");
var result = firstIndex != s.LastIndexOf("tyt") && firstIndex != -1;
RegEx 的一行代码:
return Regex.Matches(myString, "test").Count > 1;
您可以使用以下扩展方法,该方法使用string.IndexOf
:
public static bool ContainsMoreThan(this string text, int count, string value, StringComparison comparison)
{
if (text == null) throw new ArgumentNullException("text");
if (string.IsNullOrEmpty(value))
return text != "";
int contains = 0;
int index = 0;
while ((index = text.IndexOf(value, index, text.Length - index, comparison)) != -1)
{
if (++contains > count)
return true;
index++;
}
return false;
}
按以下方式使用它:
string text = "Lorem ipsum dolor sit amet, quo porro homero dolorem eu, facilisi inciderint ius in.";
bool containsMoreThanOnce = text.ContainsMoreThan(1, "dolor", StringComparison.OrdinalIgnoreCase); // true
它是一个字符串扩展名,可以传递您搜索的 、 和count
(例如,不区分大小写地搜索)。value
StringComparison
您也可以使用 Regex 类。msdn 正则表达式
int count;
Regex regex = new Regex("your search pattern", RegexOptions.IgnoreCase);
MatchCollection matches = regex.Matches("your string");
count = matches.Count;
private bool MoreThanOnce(string full, string part)
{
var first = full.IndexOf(part);
return first!=-1 && first != full.LastIndexOf(part);
}