VBS教程:VBscript属性-Value 属性
程序员文章站
2022-05-14 21:22:55
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"))
上一篇: python爬虫爬取股票信息
推荐阅读
-
python基础教程:dir()和__dict__属性的区别
-
asp.net textbox 属性value没有值_html/css_WEB-ITnose
-
ecshop 批量上传(加入自定义属性)_PHP教程
-
php类和对象之protected与const属性_PHP教程
-
Spring中利用配置文件和@value注入属性值代码详解
-
IOS UI学习教程之设置UITextField各种属性
-
javascript asp教程第七课--response属性
-
cdr复制轮廓图属性及清除轮廓图教程
-
解决vue select当前value没有更新到vue对象属性的问题
-
CSS3属性box-shadow使用详细教程