C# 取字符串中間文本 取字符串左邊 取字符串右邊


  好像是第二種效率高一點,取str字符串中123左邊的所有字符:第一種Between(str,"","123"),而第二種是Between(str,null,"123")。

public static string Between(string str, string strLeft, string strRight) //取文本中間
{
    if (str == null || str.Length == 0) return "";
    if (strLeft != "")
    {
        int indexLeft = str.IndexOf(strLeft);//左邊字符串位置
        if (indexLeft < 0) return "";
        indexLeft = indexLeft + strLeft.Length;//左邊字符串長度
        if (strRight != "")
        {
            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//取字符串左邊
    {
        int indexRight = str.IndexOf(strRight);
        if (indexRight <= 0) return "";
        else return str.Substring(0, indexRight);
    }
}

  

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 == null) return "";
        int indexRight = str.IndexOf(strRight);
        if (indexRight <= 0) return "";
        else return str.Substring(0, indexRight);
    }
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM