ASP中Split分割字串函數的執行個體用法

來源:互聯網
上載者:User

ASP中Split函數的用法
分割截取字串
看幾個例子就能理解了

複製代碼 代碼如下:mystr="1,2,3,4,5"
mystr=split(mystr,",")
for i=0 to ubound(mystr)
response.write mystr(i)
next
'傳回值為123456

mystr="xlei.net/http/student/x/index.asp"
mystr=split(mystr,"/http/student")
for i=0 to ubound(mystr)
response.write mystr(i)
next
'傳回值為xlei.net/x/index.asp

mystr="1批在2批在3批在4批是在5批在"
mystr=split(mystr,"批在")
for i=0 to ubound(mystr)
response.write mystr(i)
next
'傳回值為1234批是在56

描述
返回基於 0 的一維數組,其中包含指定數目的子字串。
文法
Split(expression[, delimiter[, count[, start]]])
Split 函數的文法有以下參數:

參數 描述
expression 必選。字串運算式,包含子字串和分隔字元。如果 expression 為零長度字串,Split 返回空數組,即不包含元素和資料的數組。
delimiter 可選。用於標識子字串界限的字元。如果省略,使用空格 ("") 作為分隔字元。如果 delimiter 為零長度字串,則返回包含整個 expression 字串的單元素數組。
count 可選。被返回的子字串數目,-1 指示返回所有子字串。
compare 可選。指示在計運算元字串時使用的比較類型的數值。有關數值,請參閱“設定”部分。

設定
compare 參數可以有以下值:
常數 值 描述
vbBinaryCompare 0 執行二進位比較。
vbTextCompare 1 執行文本比較。
vbDatabaseCompare 2 執行基於資料庫(在此資料庫中執行比較)中包含的資訊的比較。

引用來自 asp端驗證是否包含非法字元

複製代碼 代碼如下:username=replace(trim(request.form("username")),"'","''")
password=replace(trim(request.form("password")),"'","''")

if instr(username,"%") or instr(username,"#") or instr(username,"?") or instr(username,"|") then
response.write "<script. language=javascript>alert('您的姓名含有非法字元!');history.back()</script>"
response.end
end if
if instr(password,"%") or instr(password,"#") or instr(password,"?") or instr(password,"|") then
response.write "<script. language=javascript>alert('您的密碼含有非法字元!');history.back()</script>"
response.end
end if

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.