A brief discussion on JS regular RegExp object

A brief discussion on JS regular RegExp object

1. RegExp object

  • Regular expressions are objects that describe character patterns.
  • Regular expressions are used to match string patterns and perform search and replacement. They are a powerful tool for performing pattern matching on strings.
  • Reference: w3cschool | JavaScript RegExp Object

2. Grammar

2.1 Definition

When creating a regular expression object using the constructor, normal character escape rules are required (prefixed with a backslash \)

/* For example, the following two definitions are equivalent*/

// Constructor method const reg = new RegExp("\\w+");
// Literal method const reg = /\w+/;

2.2 Modifiers

Used to perform case-sensitive and global matching

Modifiers describe
i Performs a case-insensitive match.
g Perform a global match (find all matches instead of stopping after the first one).
m Performs a multi-line match.

    /* chestnut*/
const reg = /\w/gi

2.3 Square brackets

Used to find characters within a range:

expression describe
[abc] Finds any character between the square brackets.
[^abc] Finds any character that is not between the square brackets.
[0-9] Finds any number from 0 to 9.
[az] Finds any character from lowercase a to lowercase z.
[AZ] Finds any character from uppercase A to uppercase Z.
[Az] Finds any character from uppercase A to lowercase z.
[adgk] Finds any character in the given set.
[^adgk] Finds any character outside the given set.
(red|blue|green) Finds any of the specified options.

/* chestnut*/
const reg = /[0-9]/g

2.4 Metacharacters

are characters with special meanings:

Metacharacters describe
. Searches for a single character, except newline and line terminator.
\w Find word characters.
\W Find non-word characters.
\d Find a number.
\D Find non-numeric characters.
\s Finds whitespace characters.
\S Finds non-whitespace characters.
\b Matches a word boundary.
\B Matches a non-word boundary.
\0 Finds a NUL character.
\n Finds a newline character.
\f Finds a form feed character.
\r Find the carriage return character.
\t Find the tab character.
\v Finds a vertical tab character.
\xxx Searches for the character specified by the octal number xxx.
\xdd Searches for the character specified by hexadecimal number dd.
\uxxxx Finds the Unicode character specified by the hexadecimal number xxxx.

/* chestnut*/
const reg = /\d/g // matches numbers

2.5 Quantifiers

are characters with special meanings:

quantifier describe
n+ Matches any string containing at least one n.
n* Matches any string containing zero or more occurrences of n.
n? Matches any string containing zero or one n.
n{X} Matches a string containing a sequence of X n's.
n{X,Y} Matches a string containing a sequence of X to Y n's.
n{X,} Matches a string containing a sequence of at least X n's.
n$ Matches any string ending with n.
^n Matches any string beginning with n.
?=n Matches any string that is immediately followed by the specified string n.
?!n Matches any string that is not immediately followed by the specified string n.

/* chestnut*/
const reg = /\d+/g // matches at least one digit

2.6 Methods

are characters with special meanings:

method describe FF IE
compile Compile a regular expression. 1 4
exec Retrieves the value specified in a string. Returns the found value and identifies its position. 1 4
test Retrieves the value specified in a string. Returns true or false. 1 4

method describe FF IE
search Retrieves values ​​that match a regular expression. 1 4
match Finds one or more matches of the regular expression. 1 4
replace Replaces substrings that match a regular expression. 1 4
split Split a string into an array of strings. 1 4

/* chestnut*/
var patt = /Hello/g
var result = patt.test(str) // Search for the string Hello -> true

This is the end of this article about the JS regular expression RegExp object. For more relevant JS regular expression RegExp object content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • A brief discussion on the use of RegExp objects and brackets in JS regular expressions
  • Detailed explanation of JavaScript regular expression RegExp object
  • RegExp object in JS regular expression
  • js regular expression explanation index attribute (RegExp object)
  • js regular expression input attribute ($_) RegExp object attribute introduction
  • js regular expression RegExp object attributes lastIndex, lastMatch, lastParen, lastContext, rightContext attribute explanation
  • JavaScript RegExp object (regular expression)

<<:  Detailed explanation of how to introduce custom fonts (font-face) in CSS

>>:  Hyperlink icon specifications: improve article readability

Recommend

In-depth understanding of slot-scope in Vue (suitable for beginners)

There are already many articles about slot-scope ...

Detailed examples of replace and replace into in MySQL into_Mysql

MySQL replace and replace into are both frequentl...

CSS achieves footer "bottom absorption" effect

We often encounter this problem: how to use CSS t...

Tutorial on deploying the open source project Tcloud with Docker on CentOS8

1. Install Docker 1. I installed Centos7 in the v...

mysql data insert, update and delete details

Table of contents 1. Insert 2. Update 3. Delete 1...

Teach you how to quickly install Nginx in CentOS7

Table of contents 1. Overview 2. Download the Ngi...

How to correctly create MySQL indexes

Indexing is similar to building bibliographic ind...

Set an icon for the website to be displayed on the far left of the browser tab

What is the purpose of this sentence? Copy code Th...

SQL merge operation of query results of tables with different columns

To query two different tables, you need to merge ...

Docker advanced method of rapid expansion

1. Command method Run the nginx service in the cr...

Docker builds cluster MongoDB implementation steps

Preface Due to the needs of the company's bus...

Detailed tutorial on installing Python 3 virtual environment in Ubuntu 20.04

The following are all performed on my virtual mac...

MySQL configuration master-slave server (one master and multiple slaves)

Table of contents Ideas Host Configuration Modify...