最新的Web开发教程
 

VBScript的MID函数


<完整的VBScript参考

Mid函数从字符串返回指定的字符数。

Tip:请使用Len函数来确定字符串中的字符数。

句法

Mid(string,start[,length])

参数 描述
string 需要。 从中返回的字符字符串表达式
start 需要。 指定起始位置。 如果设置为大于字符串中的字符数,则它返回一个空字符串("")
length 可选的。 字符数返回

例子

实施例1

返回1个字符,开始于现在的位置是1:

<%

txt="This is a beautiful day!"
response.write(Mid(txt,1,1))

%>

代码的输出将是:

T
显示示例»

实施例2

返回15个字符,从现在的位置是1:

<%

txt="This is a beautiful day!"
response.write(Mid(txt,1,15))

%>

代码的输出将是:

This is a beaut
显示示例»

实施例3

返回所有字符,从现在的位置是1:

<%

txt="This is a beautiful day!"
response.write(Mid(txt,1))

%>

代码的输出将是:

This is a beautiful day!
显示示例»

实施例4

返回所有字符,从现在的位置是12:

<%

txt="This is a beautiful day!"
response.write(Mid(txt,12))

%>

代码的输出将是:

eautiful day!
显示示例»

<完整的VBScript参考