ASP中的REPLACE函式如何不區分大小寫

2021-07-22 08:51:48 字數 576 閱讀 1021

函式:replace()

功能:在字串中查詢,替代指定的字串.

格式:replace(strtobesearched,strsearchfor,strreplacewith [,start[,count[,compare]]])

引數:strtobesearched是字串; strsearchfor是被查詢的子字串;strreplacewith 是用來替代的子字串.start,count,compare 是任意選項。

預設情況下,函式replace()是區分大小寫的。在許多情況下,這並不是你所希望的。為了強制函式replace()進行不區分大小寫的匹配,你可以給該函式提供第六個引數,象這樣:

<% 

mystring="welcome to pcmonkey』s blog."

mystring=replace(mystring,"blog","weblog",1,-1,1)

%>

在這個例子中,第四個引數(值為1),指定從第乙個字元開始搜尋該字串,第五個引數(值為-1)指定每乙個子串都要被替換,第六個引數(值為1)指定字串的比較不區分大小寫。

Oracle中replace函式的使用

例 select filefullname from sys frmattachmentdb 查詢的結果為 e gengbaofile tygw 歷城區專案立項審批流程 1079 3186.通用流程專案資料.jpg 需求 要將結果中的 歷城區 修改為 北京區 操作 使用的函式為replace 含義為...

python中replace函式的問題

python中replace函式可以替換相應的字串,然而直接呼叫string.replace changestring,aimstring 時經常出錯,呼叫後列印顯示,字串string中的changestring並未刪除 經過測試,原來改寫成以下即可 string string.replace ch...

Oracle中replace函式的使用

1 替換特定字串 例 select filefullname from sys frmattachmentdb 查詢的結果為 e gengbaofile tygw 歷城區專案立項審批流程 1079 3186.通用流程專案資料.jpg 需求 要將結果中的 歷城區 修改為 北京區 操作 使用的函式為re...