asp 正則過濾字串

2022-04-29 04:00:14 字數 704 閱讀 3195

<%

function replacezhengze(str,patrn,replstr,ignor)

'****************************************=

'引數解釋:

'str 原來的字串

'patrn 要替換的字串(正規表示式)

'replstr 要替換成的字串

'ignor 是否區分大小寫(1不區分,0區分)

'****************************************=

dim regex ' 建立變數。

if ingor=1 then ingor=true else ingor=false

set regex = new regexp ' 建立正規表示式。

regex.pattern = patrn ' 設定模式。

regex.ignorecase = ignor ' 設定是否區分大小寫。

regex.global=true

replacezhengze = regex.replace(str,replstr) ' 作替換。

end function

%>

使用方法:pagecodelist =

親測好用:

asp 正則過濾字串

function replacezhengze str,patrn,replstr,ignor 引數解釋 str 原來的字串 patrn 要替換的字串 正規表示式 replstr 要替換成的字串 ignor 是否區分大小寫 1不區分,0區分 dim regex 建立變數。if ingor 1 the...

字串過濾

這個我這裡自己一直用的幾個函式,下面貼出來。希望盡量不是直接要例項就去用,而不關心他本來的意義和實現思路等。加油!using system using system.collections.generic using system.text using system.text.regularexpr...

ASP 連線字串

一 訪問資料庫的原理 在asp中,用來訪問資料庫的物件統稱ado物件 active data objects 主要含有三種物件 connection recordset和command,其中connection負責開啟或連線資料 庫,recordset負責訪問資料表,command負責對資料庫執行行...