InternetUnicodeHTMLCSSScalable Vector Graphics (SVG)Extensible Markup Language (xml)ASP.NetDocument Object Model (DOM)JavaScript Server-Side VBScriptVBScript Basic ElementVBScript OperatorVBScript StatementVBScript FunctionVBScript Object VBScript Object ElementVBScript Object Method Draft for Information Only
ContentVBScript Properties of RegExp Object
VBScript Properties of RegExp ObjectSome typical predefined Elements are.
Global Propertyis to set, if optional Boolean value True or False is given, or to return a Boolean value of Global property of associated RegEXp Object indicating a pattern should match all occurrences with True or just match the first one with False in an entire search string. Syntaxreobjvar.Global [= True | False ] ArgumentreobjvarRequired. The variable name of the associated Object instantance.GlobalRequired Property Keyword. To specify the Global Property of an Object.TrueOptional, but cannot be specified together with False. To specify the search applies to the entire string.FalseOptional, but cannot be specified together with True. To specify the search does not apply to the entire string. Default if omitted..Required. The dot notation used to access the Property of an object.[…]Optional. The brackets to enclose the optional parameters.=Required. required as assigning equal to operator for setting the value of Global to True or False.Remark
ReqVersion5Applied toRegExp ObjectIgnoreCase Propertyis to set, if optional Boolean value True or False is given, or to return a Boolean value of IgnoreCase property of associated RegEXp Object indicating a pattern search is case-sensitive with False or not case-sensitive with True. Syntaxreobjvar.IgnoreCase [= True | False ] ArgumentreobjvarRequired. The variable name of the associated Object instantance.IgnoreCaseRequired Property Keyword. To specify the IgnoreCase Property of an Object.TrueOptional, but cannot be specified together with False. To specify a pattern search is case-sensitive.FalseOptional, but cannot be specified together with True. To specify a pattern search is not case-sensitive. Default if omitted..Required. The dot notation used to access the Property of an object.[…]Optional. The brackets to enclose the optional parameters.=Required. required as assigning equal to operator for setting the value of Global to True or False.Remark
ReqVersion5Applied toRegExp ObjectPattern Propertyis to set, if optional searchstring is given, or to return the pattern being searched for of associated RegExp Object. Syntaxreobjvar.Pattern [= searchstring] ArgumentreobjvarRequired. The variable name of the associated Object instantance.PatternRequired Property Keyword. To specify the Pattern Property of an Object.searchstringOptional. Regular string expression being searched for. May include any predefined regular expression characters for setting..Required. The dot notation used to access the Property of an object.[…]Optional. The brackets to enclose the optional parameters.=Required. required as assigning equal to operator for setting the value of Pattern to searchstring.SettingSpecial characters and sequences for writing patterns of regular expressions CharacterDescription\Marks the next character as either a special character or a literal. For example, "n" matches the character "n". "\n" matches a newline character. The sequence "\\" matches "\" and "\(" matches "(".^Matches the beginning of input.$Matches the end of input.*Matches the preceding character zero or more times. For example, "zo*" matches either "z" or "zoo".+Matches the preceding character one or more times. For example, "zo+" matches "zoo" but not "z".?Matches the preceding character zero or one time. For example, "a?ve?" matches the "ve" in "never"..Matches any single character except a newline character.(pattern)Matches pattern and remembers the match. The matched substring can be retrieved from the resulting Matches collection, using Item [0]…[n]. To match parentheses characters ( ), use "\(" or "\)".x|yMatches either x or y. For example, "z|wood" matches "z" or "wood". "(z|w)oo" matches "zoo" or "wood".{n}n is a nonnegative integer. Matches exactly n times. For example, "o{2}" does not match the "o" in "Bob," but matches the first two o's in "foooood".{n,}n is a nonnegative integer. Matches at least n times. For example, "o{2,}" does not match the "o" in "Bob" and matches all the o's in "foooood." "o{1,}" is equivalent to "o+". "o{0,}" is equivalent to "o*".{n,m}m and n are nonnegative integers. Matches at least n and at most m times. For example, "o{1,3}" matches the first three o's in "fooooood." "o{0,1}" is equivalent to "o?".[xyz]A character set. Matches any one of the enclosed characters. For example, "[abc]" matches the "a" in "plain".[^xyz]A negative character set. Matches any character not enclosed. For example, "[^abc]" matches the "p" in "plain".[a-z]A range of characters. Matches any character in the specified range. For example, "[a-z]" matches any lowercase alphabetic character in the range "a" through "z".[^m-z]A negative range characters. Matches any character not in the specified range. For example, "[^m-z]" matches any character not in the range "m" through "z".\bMatches a word boundary, that is, the position between a word and a space. For example, "er\b" matches the "er" in "never" but not the "er" in "verb".\BMatches a non-word boundary. "ea*r\B" matches the "ear" in "never early".\dMatches a digit character. Equivalent to [0-9].\DMatches a non-digit character. Equivalent to [^0-9].\fMatches a form-feed character.\nMatches a newline character.\rMatches a carriage return character.\sMatches any white space including space, tab, form-feed, etc. Equivalent to "[ \f\n\r\t\v]".\SMatches any nonwhite space character. Equivalent to "[^ \f\n\r\t\v]".\tMatches a tab character.\vMatches a vertical tab character.\wMatches any word character including underscore. Equivalent to "[A-Za-z0-9_]".\WMatches any non-word character. Equivalent to "[^A-Za-z0-9_]".\numMatches num, where num is a positive integer. A reference back to remembered matches. For example, "(.)\1" matches two consecutive identical characters.\nMatches n, where n is an octal escape value. Octal escape values must be 1, 2, or 3 digits long. For example, "\11" and "\011" both match a tab character. "\0011" is the equivalent of "\001" & "1". Octal escape values must not exceed 256. If they do, only the first two digits comprise the expression. Allows ASCII codes to be used in regular expressions.\xnMatches n, where n is a hexadecimal escape value. Hexadecimal escape values must be exactly two digits long. For example, "\x41" matches "A". "\x041" is equivalent to "\x04" & "1". Allows ASCII codes to be used in regular expressions. Remark
ReqVersion5Applied toRegExp ObjectRegExp Execute MethodThe returns Of the Execute Method Of RegExp Object Is a Collection Of Match Objects And Is contained In a Matches Collection. Count Propertyis to return the read-only number of elements in the associated Collection or Object. Syntaxobjvar.Count ArgumentobjvarRequired. The variable name of the associated Object instantance.CountRequired Property Keyword. To specify the Count Property of an Object..Required. The dot notation used to access the Property of an object.Remark
Applied toDictionary Object, Drives Collection, Files Collection, Folders Collection, Matches CollectionItem Propertyis to return the read-only item of an element in the associated collection or Object according to the specified key Syntaxobjvar.Item(key) ArgumentobjvarRequired. The variable name of the associated Object instantance.ItemRequired Property Keyword. To specify the Item Property of an Object.keyRequired. To specify the key used to return the item of the specified key..Required. the dot notation used to access the Property of an object.(…)Required. the brackets to enclose the parameters.Remark
Applied toMatches Collection,©sideway ID: 180500018 Last Updated: 5/18/2018 Revision: 0 Latest Updated Links
![]() ![]() ![]() ![]() ![]() |
![]() Home 5 Business Management HBR 3 Information Recreation Hobbies 8 Culture Chinese 1097 English 339 Travel 18 Reference 79 Computer Hardware 254 Software Application 213 Digitization 37 Latex 52 Manim 205 KB 1 Numeric 19 Programming Web 289 Unicode 504 HTML 66 CSS 65 SVG 46 ASP.NET 270 OS 431 DeskTop 7 Python 72 Knowledge Mathematics Formulas 8 Set 1 Logic 1 Algebra 84 Number Theory 206 Trigonometry 31 Geometry 34 Calculus 67 Engineering Tables 8 Mechanical Rigid Bodies Statics 92 Dynamics 37 Fluid 5 Control Acoustics 19 Natural Sciences Matter 1 Electric 27 Biology 1 |
Copyright © 2000-2025 Sideway . All rights reserved Disclaimers last modified on 06 September 2019