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

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

    IgnoreCase 属性

    设置或返回一个Boolean值,指明模式搜索是否区分大小写。

    object.IgnoreCase [= True | False ]

    Object 参数总是一个 RegExp 对象。如果搜索是区分大小写的,则 IgnoreCase 属性为 False;否则为 True。缺省值为 False

    说明

    下面的代码说明了 IgnoreCase 属性的用法(改变赋予 IgnoreCase 属性的值以观察其效果):

    Function RegExpTest(patrn, strng)  Dim regEx,Match,Matches         ' 建立变量。  Set regEx = New RegExp         ' 建立正则表达式。  regEx.Pattern = patrn         ' 设置模式。  regEx.IgnoreCase = True         ' 设置不区分大小写。regEx.Global=True                             ' 设置全局可用性set matches=regExExecute(string )             ' 执行搜索。for each match in matches                     ' 重复匹配集合RetStr=RetStr "Match found at position "RetStr=RetStrMatch.FirstIndex".Match Value is '"RetStr=RetStrMatch.Value"'."vbCRLF NextRegExpTest=RetStrEnd FunctionMsgBox(RegExpTest("is.", "IS1 is2 IS3 is4"))
    上一篇:VBS教程:VBscript属性-Length 属性
    下一篇:VBS教程:VBscript属性-HelpFile 属性
  • 相关文章
  • 

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

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

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