正規表示式的應用

2021-06-06 10:58:32 字數 3191 閱讀 6714

using system;

using system.collections.generic;

using system.linq;

using system.web;

using system.web.ui;

using system.web.ui.webcontrols;

using oracle.dataaccess.client;

using system.data;

using system.text.regularexpressions;

public partial class advertisement_addetail_basicinfo : system.web.ui.page

}// 查詢廣告所屬的排期

protected void arrangequery()

;// 執行資料庫獲取資料

datatable strresult = dataoperator.getdatawithcursordt("mg_adset.arrangequery", paramlist);

// 輸出結果

arrid = strresult.rows[0]["arrid"].tostring();

}public void queryone()

;// 執行資料庫獲取資料

strresult = dataoperator.getdatawithcursor("mg_adset.basicinfoqueryone", paramlist, "adurl,adimgurl,adcode");

// 輸出結果

response.write(strresult);

response.end();

}public void basicinfomodify()

stradurl = stradurl.substring(0,stradurl.length-1).tostring();

string stradurl1 = stradurl; 

string stradurls = stradurl.split('|');

string url = string.empty;

for (int i = 0; i < stradurls.length; i++)

#region 除去已有鏈結

int intwidth = common.requestformtoint("width", 0);//廣告寬

int intheigth = common.requestformtoint("heigth", 0);//廣告高

// 定義引數

oracleparameter p1 = new oracleparameter("i_adid", intadid);

oracleparameter p2 = new oracleparameter("i_title", strtitle);

oracleparameter p3 = new oracleparameter("i_status", intstatusname);

oracleparameter p4 = new oracleparameter("i_ispoll", intispoll);

oracleparameter p5 = new oracleparameter("i_isshow", intisshow);

oracleparameter p7 = new oracleparameter("i_adurl", stradurl);

oracleparameter p8 = new oracleparameter("i_adimgurl", stradimgurl);

oracleparameter p9 = new oracleparameter("i_adcode", stradcode);

oracleparameter p10 = new oracleparameter("i_width", intwidth);

oracleparameter p11 = new oracleparameter("i_heigth", intheigth);

oracleparameter paramlist = new oracleparameter ;

// 執行資料庫獲取資料

strresult = dataoperator.getdatawithresult("mg_adset.basicinfomodify", paramlist);

response.write(strresult);

response.end();

}protected string getadurl(string strcode)

else}}

}return ttt;

//if (matchs.count > 0)

////else//}

}

正規表示式應用

d 非負整數 正整數 0 0 9 1 9 0 9 正整數 d 0 非正整數 負整數 0 0 9 1 9 0 9 負整數 d 整數 d 非負浮點數 正浮點數 0 0 9 0 9 1 9 0 9 0 9 1 9 0 9 0 9 0 9 1 9 0 9 正浮點數 d 非正浮點數 負浮點數 0 0 9 0 ...

正規表示式(應用)

在此頁面寫正規表示式,可以提供參考,和進行校驗 應用於前端 匹配任意長度的大小寫字母與數字 a za z0 9 匹配任意長度且不為空的大小寫字母與數字 a za z0 9 匹配長度小於20且不為空的大小寫字母與數字 a za z0 9 匹配長度小於20且不為空的大小寫字母與數字與漢字 a za z0...

正規表示式 應用

生成正規表示式 https http ftp rtsp mms s 分析 如果沒有在 裡面的時候,代表以什麼開頭 如果在 裡面的時候,代表除了 之外 https http ftp rtsp mms 代表乙個分組 進行分組的時候,findall方法只返回分組裡面的內容 print re.findall...