ASP中Split支解字符串函数的实例用法

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

您大概感乐趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wsdfdw.html