VBS教程:VBscript属性-Value 属性

时间:2021-05-23

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"))

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章