VBS Tutorial: VBScript Properties-global Properties _vbs

Source: Internet
Author: User

Global Property

Sets or returns a Boolean value that indicates whether the pattern matches all or only the first of the entire search string.

object.Global [= True | False ]

Object arguments are always RegExp objects. If the search applies to the entire string, the value of theGlobal property is True, otherwise its value is False. The default setting is False.

Description

The following code illustrates the use of the Global property (changing the value assigned to the global property and observing its effect):

Function RegExpTest(patrn, strng) Dim regEx ,match,matches         ' Create a variable. Set regEx = New RegExp         ' Establish a canonical expression. regEx.Pattern = patrn         ' Set the mode. regEx.IgnoreCase = True         ' Sets whether the letter is case-sensitive. regEx.Global = True            ' Set the whole course nature.set matches= regEx.Execute(strng)      ' Perform a search.for each match in matches        ' Duplicate Matching CollectionRetStr=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.