当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript Replace 函数
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:
|
dim txt 输出: This is a horrible day! |