0

リストボックスアイテムにhtmlタグを表示する最良の方法は何ですか...たとえば、私はこのタグを持っていて、それをlistboxitemコンテンツプロパティに解析したい:

"<font color=\"blue\">123456789<br><font color=\"black\">This book tells the story of her life from A to Z. <br>"

最終結果は、青色の「123456789」と「この本は彼女の人生の A から Z までの物語を語っています」でなければなりません。黒で。

4

1 に答える 1

1
string html="<font color=\"blue\">123456789<br><font color=\"black\">This book tells the story of her life from A to Z. <br>"  
      string anchorPattern = "<font.*?>(?<val>.*?)"<.*?"
                        MatchCollection mresultSet= Regex.Matches(html, anchorPattern, RegexOptions.Compiled);
             for (int at = 0; at < mIcerik.Count; at++)
                 {
                                mVal= Convert.ToString(mIcerik[at].Groups["val"].Value).Trim());
        ....
于 2012-12-25T15:42:06.740 に答える