当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript Mid 函数
The Mid function returns a specified number of characters from a string.
Mid 函数从字符串中返回指定数目的字符
Tip: Use the Len function to determine the number of characters in a string.
提示:要判断 string 中字符的数目,可使用 Len 函数
Mid(string,start[,length]) |
参数 | 描述 |
---|---|
string | Required. The string expression from which characters are returned 必选项。字符串表达式,从中返回字符。 |
start | Required. Specifies the starting position. If set to greater than the number of characters in string, it returns an empty string ("") 必选项。string 中被提取的字符部分的开始位置。如果 start 超过了 string 中字符的数目,Mid 将返回零长度字符串 ("")。 |
length | Optional. The number of characters to return 可选项。要返回的字符数。如果省略或 length 超过文本的字符数(包括 start 处的字符),将返回字符串中从 start 到字符串结束的所有字符。 |
dim txt 输出: T |
dim txt 输出: This is a b |
dim txt 输出: This is a beautiful day! |
dim txt 输出: beautiful day! |