Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The usage of IgnoreCase attribute in VBS

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly introduces "the usage of IgnoreCase attribute in VBS". In daily operation, I believe that many people have doubts about the usage of IgnoreCase attribute in VBS. The editor consulted all kinds of materials and sorted out simple and easy-to-use operation methods. I hope it will be helpful to answer the doubts about "the usage of IgnoreCase attribute in VBS". Next, please follow the editor to study!

Sets or returns a Boolean value indicating whether the pattern search is case-sensitive.

Object.IgnoreCase [= True | False]

The Object parameter is always a RegExp object. If the search is case-sensitive, the IgnoreCase property is False; otherwise True. The default is False.

Description

The following code illustrates the use of the IgnoreCase property (changing the value assigned to the IgnoreCase property to see its effect):

Function RegExpTest (patrn, strng) Dim regEx,Match,Matches' establishes the variable. Set regEx = New RegExp 'establishes the regular expression. RegEx.Pattern = patrn 'sets the mode. The regEx.IgnoreCase = True 'setting is case-insensitive. RegEx.Global=True 'set Global availability set matches=regExExecute (string)' performs the search. For each match in matches' repeat matching set RetStr=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")) this ends the study of "the use of the IgnoreCase attribute in VBS", hoping to solve everyone's doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report