Add regular expressions to favorites

Source: Internet
Author: User
JS Regular Expression

// Check whether it is composed of digits
[Code] function isdigit (s) {var patrn =/^ [0-9] {1, 20} $/; If (! Patrn.exe C (s) return false return true} [/Code]

// Check Logon Name: You can enter only 5-20 strings starting with a letter, which can contain numbers, "_", and ".".
[Code] function isregisterusername (s) {var patrn =/^ [A-Za-Z] {1} ([a-zA-Z0-9] | [. _]) {4, 19} $/; If (! Patrn.exe C (s) return false return true} [/Code]

// Check user name: only 1-30 strings starting with letters can be entered
[Code] function istruename (s) {var patrn =/^ [A-Za-Z] {1, 30} $/; If (! Patrn.exe C (s) return false return true }}// check password: only 6-20 letters, numbers, and underscores can be entered. [Code] function ispasswd (s) {var patrn =/^ (\ W) {6, 20} $/; If (! Patrn.exe C (s) return false return true} [/Code]

// Verify the phone number and fax number. The phone number can start with "+" and contain "-" in addition to numbers.
[Code] function istel (s) {// var patrn =/^ [+] {0, 1} (\ D) {1, 3} []? ([-]? (\ D) {}) + $/; var patrn =/^ [+] {} (\ D) {} []? ([-]? (\ D) | []) {1, 12}) + $/; If (! Patrn.exe C (s) return false return true} [/Code]

// Verify the mobile phone number. It must start with a number and can contain "-" in addition to a number.
[Code] function isMobil (s) {var patrn =/^ [+] {0, 1} (\ d) {1, 3} []? ([-]? (\ D) | []) {1, 12}) + $/; if (! Patrn.exe c (s) return false return true} [/code]

// Verify the zip code
[Code] function isPostalCode (s) {// var patrn =/^ [a-zA-Z0-9] {3, 12} $/; var patrn =/^ [a-zA-Z0-9] {3, 12} $ /; if (! Patrn.exe c (s) return false return true} [/code]

// Verify the search keyword
[Code] function isSearch (s) {var patrn =/^ [^ '~! @ # $ % ^ & * () + = |\\] [\] \{\}:;' \,. <>/?] {1} [^ '~! @ $ % ^ & () + =|\\] [\] \{\}:; '\,. <>?] {0, 19} $/; if (! Patrn.exe c (s) return false return true} function isIP (s) // by zergling {var patrn =/^ [0-9.] {1, 20} $/; if (! Patrn.exe c (s) return false return true} [/code]

Regular Expression
[Code] "^ \ D + $" // non-negative integer (positive integer + 0) "^ [0-9] * [1-9] [0-9] * $" // positive integer "^ (-\ D +) | (0 + )) $ "// non-positive integer (negative integer + 0)" ^-[0-9] * [1-9] [0-9] * $ "// negative integer" ^ -? \ D + $ "// integer" ^ \ D + (\. \ D + )? $ "// Non-negative floating point number (Positive floating point number + 0)" ^ ([0-9] + \\. [0-9] * [1-9] [0-9] *) | ([0-9] * [1-9] [0-9] * \. [0-9] +) | ([0-9] * [1-9] [0-9] *) $ "// Positive floating point number" ^ (-\ D + (\\. \ D + )?) | (0 + (\. 0 + )?)) $ "// Non-Positive floating point number (negative floating point number + 0)" ^ (-([0-9] + \\. [0-9] * [1-9] [0-9] *) | ([0-9] * [1-9] [0-9] * \. [0-9] +) | ([0-9] * [1-9] [0-9] *) $ "// negative floating point number" ^ (-? \ D +) (\. \ D + )? $ "// Floating point number" ^ [A-Za-Z] + $ "// a string consisting of 26 English letters" ^ [A-Z] + $ "// consists of 26 A string consisting of uppercase letters "^ [A-Z] + $" // a string consisting of lowercase letters 26 "^ [A-Za-z0-9] + $" // composed A string consisting of a number and 26 English letters "^ \ W + $" // a string consisting of a number, 26 English letters, or underscores "^ [\ W-] + (\\. [\ W-] +) * @ [\ W-] + (\\. [\ W-] +) + $ "// email address" ^ [A-Za-Z] +: // (\ W + (-\ W +) *)(\\. (\ W + (-\ W + )*))*(\\? \ S *)? $ "// URL" ^ [A-Za-z0-9 _] * $ "[/Code]

Detailed explanation of Regular Expressions

Introduction

In short, regular expressions are a powerful tool for pattern matching and replacement. Its functions are as follows:
Test a mode of a string. For example, you can test an input string to see if there is a phone number or a credit card number. This is called Data Validity verification.
Replace text. You can use a regular expression in a document to identify a specific text, and then delete it all or replace it with another text.
Extract a substring from the string based on the pattern match. It can be used to search for specific text in text or input fields.

Basic syntax

After a preliminary understanding of the functions and functions of a regular expression, let's take a look at the syntax format of the regular expression.

The regular expression format is generally as follows:

/Love/the part between the "/" delimiters is the pattern to be matched in the target object. You only need to place the pattern content of the desired matching object between the "/" delimiters. To enable users to customize the mode content more flexibly, regular expressions provide special "metacharacters ". Metacharacters are special characters that have special meanings in regular expressions. They can be used to specify the mode in which the leading character (that is, the character located before the metacharacters) appears in the target object.
Frequently Used metacharacters include "+", "*", and "?".

The "+" metacharacter specifies that its leading character must appear one or more times consecutively in the target object.

The "*" metacharacter specifies that the leading character must appear zero or multiple times in the target object.

"?" Metacharacter specifies that the leading object must appear zero or once consecutively in the target object.

Next, let's take a look at the specific application of the regular expression metacharacters.

/Fo +/because the regular expression above contains the "+" metacharacter, it can be used with the "fool", "fo ", or "football", and so on, one or more character strings that match the letter "f" consecutively.

/Eg */because the above regular expression contains "*" metacharacters, it can be used with "easy", "ego ", or, "egg" and other strings that appear after the letter e are matched with zero or multiple Letter g consecutively.

/Wil? /Because the above regular expression contains "?" Metacharacter, indicating that it can match the "Win" or "Wilson" in the target object, and matches zero or one character string after the letter I.

Sometimes I don't know how many characters to match. To adapt to this uncertainty, regular expressions support the concept of delimiters. These qualifiers can specify how many times a given component of a regular expression must appear to match.

{N} n is a non-negative integer. Match n times. For example, 'O {2} 'cannot match 'O' in "Bob", but can match two o in "food.

{N,} n is a non-negative integer. Match at least n times. For example, 'O {2,} 'cannot match 'O' in "Bob", but can match all o in "foooood. 'O {1,} 'is equivalent to 'o + '. 'O {0,} 'is equivalent to 'o *'.

Both {n, m} m and n are non-negative integers, where n <= m. Match at least n times and at most m times. For example, "o {1, 3}" matches the first three o in "fooooood. 'O {0, 1} 'is equivalent to 'o? '. Note that there must be no space between a comma and two numbers.

In addition to metacharacters, you can also precisely specify the frequency of occurrence of a pattern in a matching object. For example, the/jim {}/regular expression specifies that the character m can appear 2-6 times in a row in the matching object. Therefore, the regular expression can match strings such as jimmy or jimmmmmy.
After a preliminary understanding of how to use regular expressions, let's take a look at the usage of several other important metacharacters.
[Code] \ s: Used to match a single space character, including the tab key and line break; \ S: Used to match all characters except a single space character; \ d: used to match numbers from 0 to 9; \ w: Used to match letters, numbers, or underlines; \ W: Used to match all characters that do not match \ w ;.: Used to match all characters except line breaks. [/Code]
(Note: \ s and \ S and \ w and \ W can be regarded as inverse operations)
Next, let's take a look at how to use the above metacharacters in regular expressions through examples.
/\ S +/the above regular expression can be used to match one or more space characters in the target object.
/\ D000/if we have a complex financial statement in hand, we can easily find all the total amount of RMB through the above regular expression.
In addition to the metacharacters described above, regular expressions also have a unique special character, that is, the positioning character. Specifies the position where the matching mode appears in the target object. Commonly used positioning characters include "^", "$", "\ B", and "\ B ".
[Code] The "^" operator specifies that the matching mode must appear at the beginning of the target string. The "$" operator specifies that the matching mode must appear at the end of the target object. The "\ B" operator specifies that the match pattern must appear in one of the two boundary "\ B" at the beginning or end of the target string. Therefore, the matching object must be within the boundary of the start and end of the target string, that is, the matched object cannot start or end with the target string. [/Code]
Similarly, we can regard "^" and "$" as well as "\ B" and "\ B" as two sets of operators for inverse operation. For example:/^ hell/because the above regular expression contains the "^" locator, you can use "hell" with the target object ", the string starting with "hello" or "Hellhound" matches. /AR $/because the regular expression above contains the "$" operator, it can match the string ending with "car", "bar", or "Ar" in the target object. /\ Bbom/because the above regular expression pattern starts with "\ B", it can match a string starting with "bomb" or "Bom" in the target object. /Man \ B/because the above regular expression pattern ends with the "\ B" positioning character, you can use "human" with the target object ", the string ending with "woman" or "man" matches.
To make it easier for users to set matching modes flexibly, regular expressions allow users to specify a range in the matching mode, not limited to specific characters. For example:
[Code]/[A-Z]/the above regular expression will match any uppercase letter from A to Z. /[A-Z]/the above regular expression will match any lowercase letter in the range from A to Z. /[0-9]/the above regular expression will match any number from 0 to 9. /([A-Z] [A-Z] [0-9]) +/the above regular expression will be associated with any string consisting of letters and numbers, for example, "ab0" matches. [/Code]
Note that you can use "()" in a regular expression to combine strings. The content contained by the "()" symbol must appear in the target object at the same time. Therefore, the above regular expression cannot match strings such as "ABC", because the last character in "ABC" is a letter rather than a number.
If we want to implement the "or" operation similar to the programming logic in the regular expression, and select one of multiple different modes for matching, we can use the pipe character "| ". For example:/to | too | 2/the above regular expression will match "to", "too", or "2" in the target object.
There is also a common operator in the regular expression, that is, the negative character "[^]". Unlike the positioning character "^" described above, the "[^]" negation specifies that the target object cannot contain strings specified in the pattern. For example:/[^ A-C]/the above string will match any character except A, B, and C in the target object. In general, when "^" appears in "[]", it is regarded as a negative operator. When "^" is located outside of "[]" or, it should be regarded as a positioning character.
Finally, you can use the Escape Character "\" to add metacharacters to the regular expression mode and find matching objects. For example, the/Th \ */regular expression will match the "th *" in the target object rather than ".
After constructing a regular expression, you can evaluate the value like a mathematical expression, that is, you can evaluate the value from left to right in a priority order. The priority is as follows:
[Code] 1. \ Escape Character 2 .(),(? :),(? =), [] Parentheses and square brackets 3. *, + ,?, {N}, {n ,}, {n, m} qualifier 4. ^, $, \ anymetacharacter location and sequence 5. | "or" operation [/Code]

Use instance
JavaScript 1.2 contains a powerful RegExp () object that can be used to match regular expressions. The test () method can check whether the target object contains the matching mode and return true or false accordingly.
We can use JavaScript to write the following script to verify the validity of the email address entered by the user.
[Code]

Regular Expression object
This object contains the regular expression mode and a flag indicating how to apply the mode.
[Code] Syntax 1 re =/pattern/[flags] syntax 2 re = new RegExp ("pattern", ["flags"]) [/code]
Parameters
Re
Required. Name of the variable to be assigned a value in the regular expression mode.

Pattern
Required. The regular expression mode to use. If Syntax 1 is used, use the "/" character separation mode. If syntax 2 is used, quotation marks are used to mark the format.

Flags
Optional. If syntax 2 is used, the flag is enclosed in quotation marks. The flag can be used in combination and available include:
[Code] g (all pattern in full-text search) I (case-insensitive) m (multi-row search) [/code]

Example
The following example creates an object (re) that contains the Regular Expression Pattern and related signs to demonstrate the usage of the regular expression object. In this example, the regular expression object used as the result is also used in the match method:
[Code] function MatchDemo () {var r, re; // declare the variable. Var s = "The rain in Spain falls mainly in the plain"; re = new RegExp ("ain", "g"); // create a regular expression object. R = s. match (re); // search for matching in string s. Return (r);} [/code]

Return Value: ain, ain \\
Attribute lastIndex attribute | source attribute \\
Method compile method | exec method | test Method \\
Required version 3 \\
See RegExp object | regular expression syntax | String object \\

Exec Method
Run the search in the string in regular expression mode and return an array containing the search result.
RgExp.exe c (str)

Parameters

RgExp
Required. A regular expression object that contains the regular expression mode and available flag.

Str
Required. The String object or String text to be searched.

Description \\
If the exec method does not find a match, it returns null. If it finds a match, the exec method returns an array and updates the attributes of the global RegExp object to reflect the matching result. The 0 element of the array contains the complete match, and the 1st to nelement contains any child match in the match. This is equivalent to the match method without setting the global flag.
If a global flag is set for the regular expression, exec searches for it at the position indicated by the value of lastIndex. If the global flag is not set, exec ignores the value of lastIndex and searches from the starting position of the string.

The array returned by the exec method has three attributes: input, index, and lastIndex. The Input attribute contains the entire searched string. The Index attribute contains the position of the matched substring in the searched string. The LastIndex attribute contains the next position of the last character in the match.

Example \\
The following example illustrates the usage of the exec method:
[Code] function RegExpTest () {var ver = Number (ScriptEngineMajorVersion () + "." + ScriptEngineMinorVersion () if (ver> = 5.5) {// test the JScript version. Var src = "The rain in Spain falls mainly in the plain."; var re =/\ w +/g; // create The regular expression mode. Var arr; while (arr = re.exe c (src ))! = Null) document. write (arr. index + "-" + arr. lastIndex + arr + "\ t");} else {alert ("Please use the updated version of JScript");} [/code]

Returned value: 0-3The 4-8rain 9-11in 12-17Spain 18-23falls 24-30mainly 31-33in 34-37the 38-43plain

Test Method \\
Returns a Boolean value indicating whether the pattern exists in the searched string.
Rgexp. test (str)

Parameter \\
Rgexp
Required. A regular expression object that contains the regular expression mode or available flag.

Str
Required. The string to be searched.

Description
The test method checks whether a mode exists in the string. If yes, true is returned. Otherwise, false is returned.
The attributes of the global RegExp object cannot be modified by the test method.

Example
The following example illustrates the usage of the test method:
[Code] function TestDemo (re, s) {var s1; // declare the variable. // Check whether a regular expression exists in the string. If (re. test (s) // test whether the object exists. S1 = "contains"; // s inclusion mode. Else s1 = "does not contain"; // s does not contain the mode. Return ("'" + s + "'" + s1 + "'" + re. source + "'"); // return a string. } [/Code]

Function call: document. write (TestDemo (/ain +/, "The rain in Spain falls mainly in the plain ."));

Returned value: 'The rain in Spain falls mainly in The plain. 'containin' ain +'

Match Method
Use the regular expression mode to perform a query on the string and return the result containing the query as an array. \\
StringObj. match (rgExp)

Parameter \\
StringObj
Required. String object or String text to search.

RgExp
Required. It is a regular expression object that contains the regular expression mode and available flag. It can also be a variable name or string text that contains the regular expression mode and available signs.

Description \\
If no match is found in the match method, null is returned. If a match is found, an array is returned and the attributes of the global RegExp object are updated to reflect the matching result.
The array returned by the match method has three attributes: input, index, and lastIndex. The Input attribute contains the entire searched string. The Index attribute contains the position of the matched substring in the entire searched string. The LastIndex attribute contains the next position of the last character in the last match.
If the global sign (g) is not set, the 0 element of the array contains the entire match, and the 1st to n element contains any child match that has occurred during the match. This is equivalent to the exec method without a global flag. If a global flag is set, elements 0 to n contain all matches.

Example \\
The following example demonstrates the usage of the match method:
[Code] function MatchDemo () {var r, re; // declare the variable. Var s = "The rain in Spain falls mainly in the plain"; re =/ain/I; // create The regular expression mode. R = s. match (re); // try to match the search string. Return (r); // return the place where "ain" appears for the first time. } [/Code]
Return Value: ain

This example describes how to use the match method with g flag settings.
[Code] function MatchDemo () {var r, re; // declare the variable. Var s = "The rain in Spain falls mainly in the plain"; re =/ain/ig; // create The regular expression mode. R = s. match (re); // try to match the search string. Return (r); // The returned array contains all the "ain" // four matching results. } [/Code]
Return Value: ain, ain

The above lines of code demonstrate the usage of the match Method for string text.
[Code] var r, re = "Spain"; r = "The rain in Spain". replace (re, "Canada"); return r; [/code]
Return Value: The rain in Canada

Search Method
Returns the position of the first substring that matches the regular expression.

StringObj. search (rgExp)

Parameter \\
StringObj
Required. String object or String text to be searched.

RgExp
Required. A regular expression object that contains the regular expression mode and available flag.

Description

The search method specifies whether a matching exists. If a match is found, the search method returns an integer indicating the offset position starting from the string. If no match is found,-1 is returned.

Example \\
The following example demonstrates how to use the search method.
[Code] function SearchDemo () {var r, re; // declare the variable. Var s = "The rain in Spain falls mainly in the plain."; re =/falls/I; // create a regular expression pattern. R = s. search (re); // search for strings. Return (r); // return the Boolean result. } [/Code]
Return Value: 18

Regular expression syntax
A regular expression is a text mode consisting of common characters (such as characters A to Z) and special characters (such as metacharacters. This mode describes one or more strings to be matched when searching the text subject. A regular expression is used as a template to match a character pattern with the searched string.

Here are some examples of regular expressions that may be encountered:
[Code] JScript VBScript match/^ \ [\ t] * $/"^ \ [\ t] * $" matches a blank line. /\ D {2}-\ D {5}/"\ D {2}-\ D {5}" verify that an ID number consists of two digits, A hyphen and a five-digit combination. /<(. *)>. * <\/\ 1>/"<(. *)>. * <\/\ 1>" matches an HTML Tag. [/Code]

The following table shows a complete list of metacharacters and their behaviors in the context of a regular expression:

Character Description
\ Mark the next character as a special character, a literal character, a back reference, or an octal escape character. For example, 'n' matches the character "N ". '\ N' matches a line break. The sequence '\' matches "\" and "\ (" matches "(".

^ Matches the start position of the input string. If the multiline attribute of the Regexp object is set, ^ matches the position after '\ n' or' \ R.

$ Matches the end position of the input string. If the multiline attribute of the Regexp object is set, $ also matches the position before '\ n' or' \ R.

* Matches the previous subexpression zero or multiple times. For example, Zo * can match "Z" and "Zoo ". * Is equivalent to {0 ,}.

+ Match the previous subexpression once or multiple times. For example, 'Zo + 'can match "zo" and "Zoo", but cannot match "Z ". + Is equivalent to {1 ,}.

? Match the previous subexpression zero or once. For example, "Do (ES )? "Can match" do "in" do "or" does ".? It is equivalent to {0, 1 }.

{N} n is a non-negative integer. Match n times. For example, 'O {2} 'cannot match 'O' in "Bob", but can match two o in "food.

{N,} n is a non-negative integer. Match at least n times. For example, 'O {2,} 'cannot match 'O' in "Bob", but can match all o in "foooood. 'O {1,} 'is equivalent to 'o + '. 'O {0,} 'is equivalent to 'o *'.

Both {n, m} m and n are non-negative integers, where n <= m. Match at least n times and at most m times. Liu, "o {1, 3}" will match the first three o in "fooooood. 'O {0, 1} 'is equivalent to 'o? '. Note that there must be no space between a comma and two numbers.

? When this character is followed by any other delimiter (*, + ,?, The matching mode after {n}, {n ,}, {n, m}) is not greedy. The non-Greedy mode matches as few searched strings as possible, while the default greedy mode matches as many searched strings as possible. For example, for strings "oooo", 'O ++? 'Will match a single "o", and 'O +' will match all 'O '.

. Match any single character except "\ n. To match any character including '\ n', use a pattern like' [. \ n.
(Pattern) matches pattern and obtains this match. The obtained match can be obtained from the generated Matches set. The SubMatches set is used in VBScript, and $0… is used in JScript... $9 attribute. To match the parentheses, use '\ (' or '\)'.

(? : Pattern) matches pattern but does not get the matching result. That is to say, this is a non-get match and is not stored for future use. This is useful when you use the "or" character (|) to combine each part of a pattern. For example, 'industr (? : Y | ies) is a simpler expression than 'industry | industries.

(? = Pattern) Forward pre-query: matches the search string at the beginning of any string that matches pattern. This is a non-get match, that is, the match does not need to be obtained for future use. For example, 'windows (? = 95 | 98 | NT | 2000) 'can match "Windows" in "Windows 2000", but cannot match "Windows" in "Windows 3.1 ". Pre-query does not consume characters, that is, after a match occurs, the next matching search starts immediately after the last match, instead of starting after the pre-query characters.

(?! Pattern) Negative pre-query, match the search string at the start of any string that does not match Negative lookahead matches the search string at any point where a string not matching pattern. This is a non-get match, that is, the match does not need to be obtained for future use. For example, 'windows (?! 95 | 98 | NT | 2000) 'can match "Windows" in "Windows 3.1", but cannot match "Windows" in "Windows 2000 ". Pre-query does not consume characters. That is to say, after a match occurs, the next matching search starts immediately after the last match, instead of starting after the pre-query characters.

X | y matches x or y. For example, 'z | food' can match "z" or "food ". '(Z | f) ood' matches "zood" or "food ".

[Xyz] Character Set combination. Match any character in it. For example, '[abc]' can match 'A' in "plain '.

[^ Xyz] combination of negative character sets. Match any character not included. For example, '[^ abc]' can match 'p' in "plain '.

[A-z] character range. Matches any character in the specified range. For example, '[a-z]' can match any lowercase letter in the range of 'A' to 'Z.

[^ A-z] negative character range. Matches any character that is not within the specified range. For example, '[^ a-z]' can match any character that is not in the range of 'A' to 'Z.

\ B matches a word boundary, that is, the position between a word and a space. For example, 'er \ B 'can match 'er' in "never", but cannot match 'er 'in "verb '.

\ B matches non-word boundaries. 'Er \ B 'can match 'er' in "verb", but cannot match 'er 'in "never '.

\ Cx matches the control characters specified by x. For example, \ cM matches a Control-M or carriage return character. The value of x must be either a A-Z or a-z. Otherwise, c is treated as an original 'C' character.

\ D matches a numeric character. It is equivalent to [0-9].

\ D matches a non-numeric character. It is equivalent to [^ 0-9].

\ F matches a break. It is equivalent to \ x0c and \ cL.

\ N matches a linefeed. It is equivalent to \ x0a and \ cJ.

\ R matches a carriage return. It is equivalent to \ x0d and \ cM.

\ S matches any blank characters, including spaces, tabs, and page breaks. It is equivalent to [\ f \ n \ r \ t \ v].

\ S matches any non-blank characters. It is equivalent to [^ \ f \ n \ r \ t \ v].

\ T matches a tab. It is equivalent to \ x09 and \ cI.

\ V matches a vertical tab. It is equivalent to \ x0b and \ cK.

\ W matches any word characters that contain underscores. It is equivalent to '[A-Za-z0-9 _]'.

\ W matches any non-word characters. It is equivalent to '[^ A-Za-z0-9 _]'.

\ Xn matches n, where n is the hexadecimal escape value. The hexadecimal escape value must be determined by the length of two numbers. For example, '\ x41' matches "". '\ X041' is equivalent to '\ x04' & "1 ". The regular expression can use ASCII encoding ..

\ Num matches num, where num is a positive integer. References to the obtained matching. For example, '(.) \ 1' matches two consecutive identical characters.

\ N identifies an octal escape value or a backward reference. If at least n subexpressions are obtained before \ n, n is a backward reference. Otherwise, if n is an octal digit (0-7), n is an octal escape value.

\ Nm identifies an octal escape value or a backward reference. If there are at least is preceded by at least nm obtained subexpressions before \ nm, then nm is backward reference. If at least n records are obtained before \ nm, n is a backward reference followed by text m. If none of the preceding conditions are met, if n and m are Octal numbers (0-7), \ nm matches the octal escape value nm.

\ Nml if n is an octal digit (0-3) and both m and l are octal digits (0-7), the octal escape value nml is matched.

\ Un matches n, where n is a Unicode character represented by four hexadecimal numbers. For example, \ u00A9 matches the copyright symbol (?).

Priority Order
After constructing a regular expression, you can evaluate the value like a mathematical expression, that is, you can evaluate the value from left to right in a priority order.

The following table lists the priority orders of various regular expression operators from the highest priority to the lowest priority:
[Code] OPERATOR description \ escape character (),(? :),(? =), [] Parentheses and square brackets *, + ,?, {N}, {n ,}, {n, m} qualifier ^, $, \ anymetacharacter location and sequence | "or" operation [/code]

Common characters

A common character consists of all the print and non-print characters that are not explicitly specified as metacharacters. This includes all uppercase and lowercase letter characters, all numbers, all punctuation marks, and some symbols.

The simplest regular expression is a single normal character that can match the character itself in the searched string. For example, the single-Character Mode 'A' can match the 'A' letter that appears at any position in the searched string '. Here are some examples of Single-character regular expression patterns:
[Code]/a // 7 // M/[/code]
The equivalent single-character Regular Expression of VBScript is:
[Code] "a" "7" "M" [/code]
You can combine multiple single characters to obtain a large expression. For example, the following JScript regular expression is an expression created by combining a single character expression 'A', '7', and 'M.

/A7M/
The equivalent VBScript expression is:

"A7M"
Note that there is no join operator here. All you need to do is place one character after the other.

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.