在列表框项目中显示 html 标签的最佳方式是什么...例如,我有这个标签,我想将它解析为 listboxitem Content 属性:
"<font color=\"blue\">123456789<br><font color=\"black\">This book tells the story of her life from A to Z. <br>"
最终结果必须是蓝色的“123456789”和“这本书讲述了她从头到尾的生活故事”。黑色。
在列表框项目中显示 html 标签的最佳方式是什么...例如,我有这个标签,我想将它解析为 listboxitem Content 属性:
"<font color=\"blue\">123456789<br><font color=\"black\">This book tells the story of her life from A to Z. <br>"
最终结果必须是蓝色的“123456789”和“这本书讲述了她从头到尾的生活故事”。黑色。
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());
....