• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    VBS教程:VBscript属性-Value 属性

    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"))
    上一篇:VBS教程:VBscript语句-功能介绍
    下一篇:VBS教程:VBscript属性-Source 属性
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    VBS教程:VBscript属性-Value 属性 VBS,教程,VBscript,属性,-Value,