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

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

VBScript Replace 函数


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

The Replace function replaces a specified part of a string with another string a specified number of times.
Replace 函数可返回字符串,其中指定数目的某子字符串被替换为另一个子字符串

语法

Replace(string,find,replacewith[,start[,count[,compare]]])

参数 描述
string Required. The string to be searched
必选项。 字符串表达式 包含要替代的子字符串。
find Required. The part of the string that will be replaced
必选项。被搜索的子字符串
replacewith Required. The replacement substring
必选项。用于替换的子字符串
start Optional. Specifies the start position. Default is 1
可选项。expression 中开始搜索子字符串的位置。如果省略,默认值为 1。
count Optional. Specifies the number of substitutions to perform. Default value is -1, which means make all possible substitutions
可选项。执行子字符串替换的数目。如果省略,默认值为 -1,表示进行所有可能的替换。在和 start 关联时必须用。
compare Optional. Specifies the string comparison to use. Default is 0
可选项。指示在计算子字符串时使用的比较类型的数值。如果省略,缺省值为 0 ,这意味着必须进行二进制比较。

Can have one of the following values:
compare 参数可以有以下值:

  • 0 = vbBinaryCompare - 执行二进制比较
  • 1 = vbTextCompare - 执行文本比较。

实例 1

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

评论 (0) All

登陆 | 还没注册?