VBScript Mid 函数


❮ 完整的 VBScript 参考

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

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

语法

Mid(string,start[,length])

参数 描述
string 必需的。从其中返回字符的字符串表达式。如果字符串包含 Null,则返回 Null。
start 必需的。规定起始位置。如果设置为大于字符串中的字符数目,则返回空字符串("")。
length 可选。要返回的字符数目。如果省略或 length 超过文本的字符数(包括 start 处的字符),将返回字符串中从 start 到字符串结束的所有字符。

实例

实例 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 参考