当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript Mid 函数

VBScript
VBScript 介绍
如何使用 VBScript
VBScript 放置
VBScript 变量
VBScript 程序
VBScript 条件语句
VBScript 循环声明
VBScript 摘要
VBScript 实例
VBScript 函数
VBScript 关键字

VBScript Mid 函数


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 185 ::
收藏到网摘: n/a

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 到字符串结束的所有字符。

实例 1

dim txt
txt="This is a beautiful day!"
document.write(Mid(txt,1,1))
输出:
T

实例 2

dim txt
txt="This is a beautiful day!"
document.write(Mid(txt,1,11))
输出:
This is a b

实例 3

dim txt
txt="This is a beautiful day!"
document.write(Mid(txt,1))
输出:
This is a beautiful day!

实例 4

dim txt
txt="This is a beautiful day!"

document.write(Mid(txt,10))
输出:
beautiful day!

评论 (0) All

登陆 | 还没注册?