亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

asp.net(文章截取前幾行作為列表摘要)無損返回HTML代碼

 更新時(shí)間:2012年12月04日 16:56:54   作者:  
asp.net(文章截取前幾行作為列表摘要)無損返回HTML代碼,需要的朋友可以參考下

復(fù)制代碼 代碼如下:

<BR>        /* <STRONG>時(shí)間很久遠(yuǎn)了,有碼友要,我抄了下來,記得使用的時(shí)候還是有部分例外情況要處理,大部分是ok的。</STRONG>
        * 函數(shù): 
        * 說明:無損返回HTML代碼
        *      
        * 作者:卡斯Kas(QQ:10590916)
        * 修改:2010-12-13、
        */

        public static string LeftH(string str, int l)
        {
            //為了防止錯(cuò)誤
            string odstr = str;
            bool isHtml = false;//判斷截取開頭是否是字符串
            int maxLen = str.Length;
            int n = 0, i = 0, b = 0, e = 0;
            string c, c2 = "", Start = "", EndLabel = "", AllLabel = "";
            if (l >= str.Length) return str;//截取字段大于字符長度

            bool isErr = false;
            try
            {
            while (n < l && i < maxLen)
            {
                //1
                i++;
                c = str.Substring(i - 1, 1);

                string end2str = "";
                try
                {
                    end2str = str.Substring(i - 1, 2);
                }
                catch
                {
                    end2str = "";
                }
                if (c == "<" && end2str != "</")
                {
                    isHtml = true;
                    b = i;//記錄一個(gè)位置
                    //5     解決非成對(duì)標(biāo)簽

                    string end2tag = "";
                    try
                    {
                        end2tag = str.Substring(i, 2);
                    }
                    catch
                    {
                        end2tag = "";
                    }

                    if (end2tag == "br")
                    {
                        isHtml = false;
                    }
                    if (str.Substring(i, 1).ToLower() == "%")
                    {
                        isHtml = false;
                    }
                    if (str.Substring(i, 1).ToLower() == "?")
                    {
                        isHtml = false;
                    }
                    else if (end2tag == "hr")
                    {
                        isHtml = false;
                    }
                    //5end
                }
                //1end

                //2
                if (c == "<" && end2str == "</")
                {
                    c2 = str.Substring(i - 1, str.Substring(i - 1).IndexOf(">") + 1);
                    AllLabel = AllLabel.Substring(c2.Length);
                }
                //2end

                Start = Start + c;//記錄當(dāng)前字符及其前面字符

                if (!isHtml)
                {
                    //6     較為準(zhǔn)確的計(jì)數(shù)
                    try
                    {
                        if (str.Substring(i, 2).ToLower() == "br")
                        {
                        }
                        else if (str.Substring(i, 2).ToLower() == "hr")
                        {
                        }
                        else
                        {
                            n++;
                        }
                    }
                    catch
                    {
                        //如果出錯(cuò),則返回純文本(@"<[^>]+>|</[^>]+>");
                        //odstr = Regex.Replace(odstr, @"<[^>]+>|</[^>]+>", "", RegexOptions.IgnoreCase);
                        odstr = odstr.Replace("<", "<").Replace(">", ">");
                        if (l > odstr.Length) l = odstr.Length;
                        return odstr.Substring(0, l);
                    }
                    //6end
                }
                else
                {
                    if (c == ">")//如果循環(huán)到>時(shí),要處理的成對(duì)標(biāo)簽中間部分
                    {
                        if (isHtml)
                        {
                            EndLabel = str.Substring(b, i - b);//獲取<到>之間的代碼
                            e = EndLabel.IndexOf(" ");//標(biāo)簽屬性都有空格,以空格為分割,獲取標(biāo)簽名
                            if (e > 0)
                            {
                                EndLabel = "</" + EndLabel.Substring(0, e) + ">";
                            }
                            else
                            {
                                EndLabel = "</" + EndLabel;
                            }
                            AllLabel = EndLabel + AllLabel;//記錄當(dāng)前結(jié)束標(biāo)簽,及所有有關(guān)結(jié)束標(biāo)簽
                        }
                        isHtml = false;//重置屬性,從新開始
                    }
                }
                //4     當(dāng)結(jié)束時(shí),發(fā)現(xiàn)有未閉合的標(biāo)簽,則重新來一次
                if (n + 1 >= l)
                {
                    if (InStrN(Start, "<") != InStrN(Start, ">"))
                    {
                        n--;
                    }
                }
                //4end
            }//end while

            }
            catch
            {
                isErr = true;
            }

            string newReString = Start + AllLabel + "...";

            //最后再次驗(yàn)證
            Regex Rg = new Regex("<.[^>/]+>", RegexOptions.Compiled);
            Regex Rg2 = new Regex(@"<\s*/[a-z]\s*>", RegexOptions.Compiled);

            if (inStrLen(newReString, "<") != inStrLen(newReString, ">"))
            {
                isErr = true;
            }
            else if (inStrLen(newReString.Replace(""", "\""), "\"") % 2 == 1)
            {
                isErr = true;
            }
            else if (Rg.Matches(newReString).Count != Rg2.Matches(newReString).Count)
            {
                isErr = true;
            }
            if (isErr)
            {
                odstr = odstr.Replace("<", "<").Replace(">", ">").Replace("\"", """).Replace("'", "'");
                if (l > odstr.Length)
                { newReString = odstr; }
                else
                {
                    try
                    {
                        newReString = odstr.Substring(0, l) + "...";
                    }
                    catch
                    {
                        newReString = odstr;
                    }
                }
            }

            return newReString;//返回
        }

相關(guān)文章

  • Path類與Directory類與File類對(duì)路徑/目錄/文件的操作實(shí)例

    Path類與Directory類與File類對(duì)路徑/目錄/文件的操作實(shí)例

    本文將詳細(xì)介紹下:Path對(duì)路徑字符串進(jìn)行操作/Directory和DirectoryInfo 對(duì)目錄進(jìn)行操作/File和FileInfo對(duì)文件進(jìn)行操作,感興趣的你可不要錯(cuò)過了哈
    2013-02-02
  • windows中允許服務(wù)與桌面交互的更改方法示例

    windows中允許服務(wù)與桌面交互的更改方法示例

    這篇文章主要介紹了windows中允許服務(wù)與桌面交互的更改方法,需要的朋友可以參考下
    2014-02-02
  • 詳解.Net緩存之MemoryCahe

    詳解.Net緩存之MemoryCahe

    這篇文章主要介紹了.Net緩存之MemoryCahe的相關(guān)資料,幫助大家更好的理解和學(xué)習(xí)使用.net技術(shù),感興趣的朋友可以了解下
    2021-05-05
  • 淺談ASP.NET Core 2.0 帶初始參數(shù)的中間件(譯)

    淺談ASP.NET Core 2.0 帶初始參數(shù)的中間件(譯)

    這篇文章主要介紹了淺談ASP.NET Core 2.0 帶初始參數(shù)的中間件(譯),非常具有實(shí)用價(jià)值,需要的朋友可以參考下
    2017-10-10
  • .NET 中Worker Service的使用入門

    .NET 中Worker Service的使用入門

    隨著 .NET Core 3.0 的發(fā)布,ASP.NET 團(tuán)隊(duì)引入了一個(gè)新的&nbsp;Worker Service&nbsp;項(xiàng)目模板,該模板作為 .NET SDK 的一部分發(fā)布。在本文中,我將向您介紹這個(gè)新模板,以及使用它開發(fā)的一些實(shí)際的服務(wù)示例。
    2021-05-05
  • .net 中的SqlConnection連接池機(jī)制詳解

    .net 中的SqlConnection連接池機(jī)制詳解

    .net 中通過 SqlConnection 連接 sql server,我們會(huì)發(fā)現(xiàn)第一次連接時(shí)總是很耗時(shí),但后面連接就很快,這個(gè)其實(shí)和SqlConnection 的連接池機(jī)制有關(guān)
    2013-04-04
  • .Net Core簡單使用Mvc內(nèi)置的Ioc(續(xù))

    .Net Core簡單使用Mvc內(nèi)置的Ioc(續(xù))

    怎樣直接獲取Ioc中的實(shí)例對(duì)象,而不是以構(gòu)造函數(shù)的方式進(jìn)行獲取呢?這篇文章繼續(xù)為大家介紹.Net Core簡單使用Mvc內(nèi)置的Ioc
    2018-03-03
  • 服務(wù)器讀取EXCEL不安裝OFFICE如何實(shí)現(xiàn)

    服務(wù)器讀取EXCEL不安裝OFFICE如何實(shí)現(xiàn)

    用asp.net做了一簡單的游戲管理后臺(tái),涉及到了上傳Excel導(dǎo)入數(shù)據(jù)的功能,在本地開發(fā)實(shí)現(xiàn)都好好的,可已上傳的服務(wù)器上就悲劇了,下面有個(gè)不錯(cuò)的解決方法,大家可以參考下
    2014-03-03
  • ASP.net 路徑問題 詳解

    ASP.net 路徑問題 詳解

    各位有沒有碰到在日常工作中經(jīng)常在路徑設(shè)置的時(shí)候把 "~/ 、./ 、../ 、 / 、"這些符號(hào)搞混搞亂了?
    2010-05-05
  • asp.net listbox實(shí)現(xiàn)單選全選取消

    asp.net listbox實(shí)現(xiàn)單選全選取消

    這篇文章主要介紹了asp.net listbox單選全選取消的應(yīng)用,需要的朋友可以參考下
    2014-02-02

最新評(píng)論