VBS Tutorial: VBscript attributes-Global attributes

Source: Internet
Author: User

Global attributes

Set or returnBooleanValue, which indicates whether the pattern matches all or only the first character in the entire search string.

object.Global [= True | False ]

Object parameters alwaysRegExpObject. If the search is applied to the entire string,GlobalThe property value isTrueOtherwise, the value isFalse. The default value isFalse.

Description

The following code illustratesGlobalAttribute usage (change to assignGlobalAttribute Value and observe its effect ):

Function RegExpTest(patrn, strng)  Dim regEx ,match,matches         ' Create a variable.  Set regEx = New RegExp         ' Create a regular expression.  regEx.Pattern = patrn         ' Set the mode.  regEx.IgnoreCase = True         ' Specifies whether to distinguish between uppercase and lowercase letters.  regEx.Global = True            ' Set the full nature.set matches= regEx.Execute(strng)      ' Execute the search.for each match in matches                     ' Repeated matching setRetStr=RetStr &"Match found at position "RetStr=RetStr&Match.FirstIndex&".Match Value is '"RetStr=RetStr&Match.Value&"'."&vbCRLF NextRegExpTest=RetStrEnd FunctionMsgBox(RegExpTest("is.", "IS1 is2 IS3 is4"))

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.