欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

VBS教程:VBscript属性-Value 属性

程序员文章站 2022-11-14 12:34:33
value 属性返回在一个搜索字符串中找到的匹配的值或文本。object.valueobject 参数总是一个...

value 属性

返回在一个搜索字符串中找到的匹配的值或文本。

object.value

object 参数总是一个 match 对象。

说明

下列代码说明了 value 属性的用法:

function regexptest(patrn, strng)  dim regex, match, matches         ' 建立变量。  set regex = new regexp         ' 建立正则表达式。  regex.pattern = patrn         ' 设置模式。  regex.ignorecase = true         ' 设置是否区分字母的大小写。  regex.global = true            ' 设置全程可用性。  set matches = regex.execute(strng)      ' 执行搜索。  for each match in matches         ' 遍历matches集合。    retstr = retstr & "match " & i & " found at position "    retstr = retstr & match.firstindex & ". match value is "'    retstr = retstr & match.value & "'." & vbcrlf  next  regexptest = retstrend functionmsgbox(regexptest("is.", "is1 is2 is3 is4"))