VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 编程开发 > c#教程 >
  • C#教程之C#教程之C# 取字符串中间文本 取字符串左边 取字(2)

  

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
public static string Between2(string str, string strLeft, string strRight) //取文本中间
{
    if (str == null || str.Length == 0) return "";
    if (strLeft != null)
    {
        int indexLeft = str.IndexOf(strLeft);//左边字符串位置
        if (indexLeft < 0) return "";
        indexLeft = indexLeft + strLeft.Length;//左边字符串长度
        if (strRight != null)
        {
            int indexRight = str.IndexOf(strRight, indexLeft);//右边字符串位置
            if (indexRight < 0) return "";
            return str.Substring(indexLeft, indexRight - indexLeft);//indexRight - indexLeft是取中间字符串长度
                }
        else return str.Substring(indexLeft, str.Length - indexLeft);//取字符串右边
    }
    else//取字符串左边
    {
        if (strRight == nullreturn "";
        int indexRight = str.IndexOf(strRight);
        if (indexRight <= 0) return "";
        else return str.Substring(0, indexRight);
    }
}
相关教程