VBS Tutorial: Method-replace Method _vbs

Source: Internet
Author: User

Replace method

Replaces the text found in the regular expression lookup.

object.Replace(string1, string2)

Parameters

Object

Required option. Always the name of a RegExp object.

String1

Required option. string1 is the string that will be replaced with text.

string2

Required option. string2 is a replacement text string.

Description

The actual mode of the replaced text is set by the RegExp object's Pattern property.

The replace method returns a copy of the string1 , where the regexp.pattern text has been replaced with string2. If no matching text is found, a copy of the original string1 is returned.

The following example illustrates the use of the Replace method.

Function ReplaceTest(patrn, replStr) Dim regEx, str1               ' Create a variable. str1 = "The quick brown fox jumped over the lazy dog." Set regEx = New RegExp               ' Establishes a regular expression. regEx.Pattern = patrn               ' Set the mode. regEx.IgnoreCase = True               ' Sets whether the case is case-sensitive. ReplaceTest = regEx.Replace(str1, replStr)' For replacement.End FunctionMsgBox(ReplaceTest("fox", "cat"))            ' Will 'fox' Replaced by 'cat'

; In addition , the Replace method replaces subexpressions in the pattern. The following is a call to a function in the previous example that replaces all the word pairs in the original string:

Exchange of words on.

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.