陈斌彬的技术博客

Stay foolish,stay hungry

String-IndexOf

//
    // 摘要:
    //     报告指定的 System.String 在此实例中的第一个匹配项的索引。
    //
    // 参数:
    //   value:
    //     要查找的 System.String。
    //
    // 返回结果:
    //     如果找到该字符串,则为 value 的从零开始的索引位置;如果未找到该字符串,则为 -1。如果 value 为 System.String.Empty,则返回值为
    //     0。
    //
    // 异常:
    //   System.ArgumentNullException:
    //     value 为 null。
    public int IndexOf(string value);

判断Str1是否是在Str2这个长的字符串中

    public static bool StrIFIn(string Str1, string Str2)
    {
        if (Str2.IndexOf(Str1) < 0)
        {
            return false;
        }
        else
        {
            return true;
        }
    }