How do I make the Replace method case-insensitive?

Source: Internet
Author: User
The actual pattern of uppercase and lowercase replaced text is set by the RegExp object's Patterns 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, the
Returns a copy of the original string1.

The following example illustrates the use of the Replace method.

Function replacetest (PATRN, REPLSTR)
Dim regEx, str1 ' Set variable.
STR1 = "The quick brown fox jumped over the lazy dog."
Set regEx = New RegExp ' establishes a regular expression.
Regex.pattern = Patrn ' Set mode.
Regex.ignorecase = True ' Sets whether case sensitive.
Replacetest = Regex.Replace (str1, Replstr) ' for replacement.
End Function

MsgBox (Replacetest ("Fox", "Cat")) ' replaces ' Fox ' with ' cat '.
; In addition, the Replace method replaces subexpressions in the pattern. The following is a call to a function in the previous example, replacing all the words in the original string
Right:

MsgBox (ReplaceText (\s+) (\s+) (\s+), "$3$2$1")) ' exchange of words.

The required scripting language is above 5.0



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.