Home Web Front-end JS Tutorial What are the new features in regular expressions?

What are the new features in regular expressions?

Mar 30, 2018 pm 01:32 PM
Which New expression

This time I will bring you what are the new features in regular expressions, what are the notes when using the new features in regular expressions, the following are practical cases , let’s take a look.

New features of ES2015 regular expressions:

Based on the original regular expressions, ES2015 has enhanced support for four-byte unicode characters and other functions.

For more information on regular expressions, please refer to the regular expression tutorial section.

1. RegExpUsage of constructor:

Before ES2015, use the RegExp constructor to create a regular expression objectThere are two ways:

Creation method one:

var reg = new RegExp("antzone","g");

The first parameter of the constructor is the regular expression string body, and the second parameter is the regular expression modifier.
The above code is equivalent to the following code:

var regex = /antzone/g;

Creation method two:

var reg = new RegExp(/antzone/g);

If the parameter is not a regular expression string, there can only be one parameter; the following writing is wrong :

var reg = new RegExp(/antzone/,g);

It is not allowed to use the second parameter to set the regular expression modifier.
ES2015 changes this behavior, even if the first parameter is a regular expression object, the second parameter can also be specified:

var reg = new RegExp(/antzone/gi," g");

The regular expression modifier specified in the second parameter will override the modifier in the first parameter.

2. Regular methods for strings:

The match(), replace(), search() and split() methods related to regular expressions belong to strings object.
ES2015 has modified this. When these four methods are called, the instance method of the RegExp object is actually called internally.
(1).String.prototype.match calls RegExp.prototype[Symbol.match].
(2).String.prototype.replace calls RegExp.prototype[Symbol.replace]
(3).String.prototype.search calls RegExp.prototype[Symbol.search]
(3).String .prototype.split calls RegExp.prototype[Symbol.split]
For more information about Symbol, please refer to the ES2015 Symbol chapter.

3. Line-behind assertions (ES2016):

For line-behind assertions, please refer to the chapter on regular expression zero-width assertions.

4. New modifiers:

Modifier Description
u modifier This modifier identifies the ability to correctly handle Unicode characters larger than \uFFFF.
y modifier specifies that matching can only start from the position specified by the lastIndex attribute. If the match fails, subsequent characters will not be tried again.

5. New attributes:

Attribute Description
sticky attribute Returns a Boolean value to identify whether the y modifier is set.
flags attribute Returns the modifiers of the regular expression.

6. New method:

Method Description
RegExp.escape()(ES2016)

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Regular Expressions Detailed explanation of the use of \W metacharacters (with code)

Regular Expressions Detailed introduction to character classes

The above is the detailed content of What are the new features in regular expressions?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Which games are suitable for playing with i34150 and 1G independent graphics (which games is suitable for i34150) Which games are suitable for playing with i34150 and 1G independent graphics (which games is suitable for i34150) Jan 05, 2024 pm 08:24 PM

What games can be played with i34150 with 1G independent graphics? Can it play small games such as LoL? GTX750 and GTX750TI are very suitable graphics card choices. If you just play some small games or not play games, it is recommended to use the i34150 integrated graphics card. Generally speaking, the price difference between graphics cards and processors is not very big, so it is important to choose a reasonable combination. If you need 2G of video memory, it is recommended to choose GTX750TI; if you only need 1G of video memory, just choose GTX750. GTX750TI can be seen as an enhanced version of GTX750, with overclocking capabilities. Which graphics card can be paired with i34150 depends on your needs. If you plan to play stand-alone games, it is recommended that you consider changing the graphics card. you can choose

New static method of DateTime class in PHP8.1 New static method of DateTime class in PHP8.1 Jul 08, 2023 pm 12:42 PM

New static methods of DateTime class in PHP8.1 PHP8.1 version introduces some powerful features and functions, one of the eye-catching updates is the static method of DateTime class. The DateTime class is an important tool for processing dates and times in PHP. It provides many practical methods to operate and process date and time data. Let's take a look at some of the new static methods of the DateTime class in PHP8.1 and their usage examples. DateTime::cr

How to solve Python expression syntax errors? How to solve Python expression syntax errors? Jun 24, 2023 pm 05:04 PM

Python, as a high-level programming language, is easy to learn and use. Once you need to write a Python program, you will inevitably encounter syntax errors, and expression syntax errors are a common one. In this article, we will discuss how to resolve expression syntax errors in Python. Expression syntax errors are one of the most common errors in Python, and they are usually caused by incorrect usage of syntax or missing necessary components. In Python, expressions usually consist of numbers, strings, variables, and operators. most common

Linux User Management: Revealing New User Operations Linux User Management: Revealing New User Operations Feb 24, 2024 pm 11:03 PM

In Linux systems, adding new users is an important part of managing system permissions and security. This article will reveal the specific methods of adding users in the Linux operating system, including specific code examples and step instructions, to help readers quickly master the skills of adding users. 1. Use the adduser command to add users. The adduser command is the preferred tool for adding users in Debian and Ubuntu. This command calls the useradd command and sets some default values, simplifying the user addition process. To add a

In C and C++, comma is used to separate expressions or statements In C and C++, comma is used to separate expressions or statements Sep 09, 2023 pm 05:33 PM

In C or C++, the comma "," has different uses. Here we will learn how to use them. Commas as operators. The comma operator is a binary operator that evaluates the first operand, discards the result, then evaluates the second operand and returns the value. The comma operator has the lowest precedence in C or C++. Example #include<stdio.h>intmain(){ intx=(50,60); inty=(func1(),func2());} Here 60 will be assigned to x. For the next statement, func1( will be executed first

What kind of computer equipment is needed for applied physics (what are the required courses for applied physics) What kind of computer equipment is needed for applied physics (what are the required courses for applied physics) Dec 30, 2023 pm 12:11 PM

What computer to use for applied physics requires high performance. 2. The reason is that the physics major involves a large number of data processing, simulation calculations and programming tasks, and requires a computer with higher configuration to support these tasks. Higher processor performance and memory capacity can improve computing speed and operating efficiency, larger storage space can store large amounts of data and simulation results, and better graphics card performance can support physical simulation and visualization tasks. 3. In addition, students majoring in physics may also need to use some specific software tools, such as numerical calculation software, simulation software and data analysis software, etc. These software also have certain requirements for computer configuration. Therefore, in order to better support study and research work, physics students usually need to choose a computer with higher configuration

Introduction to exponential function expressions in C language Introduction to exponential function expressions in C language Feb 18, 2024 pm 01:11 PM

Introduction to how to write exponential function expressions in C language and code examples What is an exponential function? The exponential function is a common type of function in mathematics. It can be expressed in the form of f(x)=a^x, where a is the base and x is the exponent. . Exponential functions are mainly used to describe exponential growth or exponential decay. Code example of exponential function In C language, we can use the pow() function in the math library to calculate the exponential function. The following is a sample program: #include

lambda expression in Java lambda expression in Java Jun 09, 2023 am 10:17 AM

Lambda expressions in Java With the release of Java 8, lambda expressions have become one of the most concerned and discussed topics among Java developers. Lambda expressions can simplify Java programmers' tedious writing methods, and can also improve the readability and maintainability of programs. In this article, we will take a deep dive into lambda expressions in Java and how they provide a simpler and more intuitive programming experience in Java code.

See all articles