VBS Tutorial: Method-test Method _vbs

Source: Internet
Author: User

Test method

Performs a regular expression search on the specified string and returns a Boolean indicating whether the matching pattern is found.

object.Test(string)

Parameters

Object

Required option. Always the name of a RegExp object.

String

Required option. The text string to perform a regular expression search for.

Description

The actual mode of the regular expression search is set by regexp the Pattern property of the object. The Regexp.global property has no effect on the test method.

The test method returns true if a matching pattern is found, otherwise it returns false.

The following code illustrates the use of the test method.

  Function regexptest (patrn, strng) Dim regEx, retval              '  to establish a variable. The  set regEx = New regexp          '  establishes a regular expression.  Regex.pattern = patrn          '  setting mode. The  regex.ignorecase = false          '  setting is case-sensitive.  retVal = regex.test (Strng)                '  to perform a search test.  If retVal Then   regexptest =  finds one or more matches.    Else   regexptest =  did not find a match.    End If   End Function   MsgBox (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.