7

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

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

4

5 回答 5

16

尝试利用快速IndexOfLastIndexOf字符串方法。使用下一个代码片段。想法是检查第一个和最后一个索引是否不同,如果第一个索引不是-1,这意味着字符串存在。

string s = "tytyt";

var firstIndex = s.IndexOf("tyt");

var result = firstIndex != s.LastIndexOf("tyt") && firstIndex != -1;
于 2013-02-20T16:34:55.910 回答
6

RegEx 的一行代码:

return Regex.Matches(myString, "test").Count > 1;
于 2016-08-05T03:47:17.427 回答
3

您可以使用以下扩展方法,该方法使用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

于 2013-02-20T16:36:39.220 回答
3

您也可以使用 Regex 类。msdn 正则表达式

   int count;
   Regex regex = new Regex("your search pattern", RegexOptions.IgnoreCase);
   MatchCollection matches = regex.Matches("your string");
   count = matches.Count;
于 2013-02-20T16:41:17.130 回答
2
private bool MoreThanOnce(string full, string part)
{
   var first = full.IndexOf(part);
   return first!=-1 && first != full.LastIndexOf(part);
}
于 2013-02-20T16:37:04.353 回答