检查字符串是否多次包含子字符串

本文关键字:字符串 包含 是否 检查 | 更新日期: 2023-09-27 18:00:14

要在字符串中搜索子字符串,我可以使用contains()函数。但是,如何检查字符串是否多次包含子字符串?

优化:对我来说,知道有不止一个结果而不是多少结果就足够了。

检查字符串是否多次包含子字符串

尝试利用快速IndexOfLastIndexOf字符串方法。使用下一个代码段。想法是检查第一个和最后一个索引是否不同,以及第一个索引是否不是-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;

您也可以使用Regex类。msdn regex

   int count;
   Regex regex = new Regex("your search pattern", RegexOptions.IgnoreCase);
   MatchCollection matches = regex.Matches("your string");
   count = matches.Count;

您可以使用以下使用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、搜索的valueStringComparison(例如,不区分大小写搜索)。

private bool MoreThanOnce(string full, string part)
{
   var first = full.IndexOf(part);
   return first!=-1 && first != full.LastIndexOf(part);
}