VBS教程:VBscript属性-FirstIndex 属性
程序员文章站
2024-01-23 18:51:28
firstindex 属性返回在搜索字符串中匹配的位置。object.firstindexobject 参数总是...
firstindex 属性
返回在搜索字符串中匹配的位置。
object.firstindex
object 参数总是一个 match 对象。
说明
firstindex 属性使用从零起算的偏移量,该偏移量是相对于搜索字符串的起始位置而言的。换言之,字符串中的第一个字符被标识为字符 0。 下面的例子说明了 firstindex 属性的用法:
~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 & "匹配 " & i & " 位于 " retstr = retstr & match.firstindex & ". match value is "' retstr = retstr & match.value & "'." & vbcrlf next regexptest = retstrend functionmsgbox(regexptest("is.", "is1 is2 is3 is4"))
上一篇: HTML(一)
推荐阅读
-
PHP动态地创建属性和方法, 对象的复制, 对象的比较,加载指定的文件,自动加载类文件,命名空间,_PHP教程
-
关于gradle替换Android Manifest中的属性变量的方法教程
-
CSS教程之css选择器 、属性、值
-
PHP5.0对象模型的属性和方法分析_PHP教程
-
CSS border边框属性教程(color style)
-
VBS教程:VBScript 语句-Property Set 语句
-
VBS教程:VBScript 语句-Randomize 语句
-
VBS教程:属性-SerialNumber 属性
-
SpringBoot 教程之属性加载详解
-
Python中动态获取对象的属性和方法的教程