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

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

VBScript Right 函数


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

The Right function returns a specified number of characters from the right side of a string.
Right 函数可从字符串右边返回指定数目的字符。

Tip: Use the Len function to find the number of characters in a string.
提示:要确定 string 参数中的字符数目,使用 Len 函数

Tip: Also look at the Left function.
提示:还可以参考下Left函数

语法

Right(string,length)

参数 描述
string Required. The string to return characters from
必选项。字符串表达式,其最右边的字符被返回。
length Required. Specifies how many characters to return. If set to 0, an empty string ("") is returned. If set to greater than or equal to the length of the string, the entire string is returned
必选项。数值表达式,指明要返回的字符数目。如果为 0,返回零长度字符串;如果此数大于或等于 string 参数中的所有字符数目,则返回整个字符串。

实例 1

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

实例 2

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

document.write(Right(txt,100))
输出:
This is a beautiful day!

实例 3

dim txt,x
txt="This is a beautiful day!"
x=Len(txt)
document.write(Right(txt,x))
输出:
This is a beautiful day!

评论 (0) All

登陆 | 还没注册?