|
namespace WebCode
{
public partial class _default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
String str = "這是一個(gè)測(cè)試文件<{config name=/"pagetitle1/"}>,一個(gè)標(biāo)簽的解析<{config name=/"pagetitle2/" count=/"2/"}>過(guò)程";
Label mylabel = new Label();
mylabel.ID = "display";
mylabel.Text = this.myReplace(str);
Page.Form.Controls.Add(mylabel);
}
protected String myReplace(String str)
{
String pattern = @"/</{(.*?)/}/>";
Regex p = new Regex(pattern, RegexOptions.IgnoreCase);
MatchCollection m = p.Matches(str);
String matchs = "";
for (int i = 0; i < m.Count; i++)
{
matchs += "," + m[i];
}
return matchs.Substring(1);
}
}
}
Page.Form.Controls.Add
向頁(yè)面中Form節(jié)點(diǎn)的尾部添加控件。
using System.Text.RegularExpressions;
使用正則表達(dá)式要使用的類
AspNet技術(shù):動(dòng)態(tài)向頁(yè)面添加控件和使用正則表達(dá)式的代碼,轉(zhuǎn)載需保留來(lái)源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。