A record of pitfalls in JS regular matching

A record of pitfalls in JS regular matching

I recently discovered a pitfall in regular expression matching in JS, and it was so strange at the time that I even suspected that something paranormal was going on.

The following is the pit code

   var str=["二七1","二七2","金水","二七3","二七4","二七5"]
        var reg = new RegExp ("二七", "g");
        for(var i=0;i<str.length;i++){
            if(reg.test(str[i])){
                console.log(str[i])
            }
        }

I use regular expression to globally match str, and print it out when it is satisfied, so I get this

There are two missing for no apparent reason, and I will make a separate judgment on them.

      var str=["二七1","二七2","金水","二七3","二七4","二七5"]
        var reg = new RegExp ("二七", "g");
        for(var i=0;i<str.length;i++){
            if(reg.test(str[i])){
                console.log(str[i])
            }
            if(i==1){
                console.log(reg.test(str[i]))
            }
            if(i==4){
                console.log(reg.test(str[i]))
            }
        }

So I got this

One more is missing, but I can see that the two missing ones satisfy the regularity check. Then I found the following passage on the Internet:

If a string is successfully matched in a regular expression, lastIndex will be set to the position of the first matched string as the starting point for the next search of the string global match. If subsequent fields can be matched successfully, lastIndex will be repeatedly reassigned until the match fails, and it will be reset to 0.

But I asked my teacher, and he told me that after the match is found, lastIndex+1 is returned. That is, when I matched for the first time, lastIndex was 2. This 2 is the subscript in the string, not the subscript of the array. Therefore, when judging str[1], it starts from the string subscript 2, not from 0. Therefore, the second judgment is false, and the match fails. LastIndex is set to 0, so the third match can be successful.

So after the judgment result is true, lastIndex is set to 0, so that the data is normal.

The data is normal.

Summarize

If global matching is used, then lastIndex is set to zero after each search, or global matching is not used and direct matching can be performed.

Here is a summary of netizens:

lastIndex literally means the last index. In fact, it means the index position where the regular expression starts the next search. It is always 0 for the first time. When the first search is completed, the value of lastIndex will be set to the index position of the last character of the matched string plus 1. The second search will start from the lastIndex position, and so on. If not found, lastIndex is reset to 0. It should be noted that the lastIndex attribute only works in a regular expression with a global flag. If we remove the g flag from the regular expression in the above code, then all three pop-ups will be true.

Friends in need can refer to it. This is the end of this article about a record of JS regular matching pitfalls. For more relevant JS regular matching pitfalls, 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:
  • js regular expression learning notes: matching strings
  • Regular matching password can only be a combination of numbers and letters [PHP and JS implementation]
  • String string matching javascript regular expression
  • JS regular learning notes: matching string literals
  • JavaScript regular expression matching string literals
  • JS regular learning notes: Matching string literal optimization

<<:  MySQL knowledge points and commonly used MYSQL commands for the second-level computer exam

>>:  Detailed explanation of three ways to cut catalina.out logs in tomcat

Recommend

Summary of three ways to create new elements

First: via text/HTML var txt1="<h1>Tex...

Detailed explanation of the process of building and running Docker containers

Simply pull the image, create a container and run...

Solution to "No input file specified" in nginx+php

Today, the error "No input file specified&qu...

Docker overlay realizes container intercommunication across hosts

Table of contents 1. Docker configuration 2. Crea...

Use Docker to build a Redis master-slave replication cluster

In a cluster with master-slave replication mode, ...

Windows 2019 Activation Tutorial (Office2019)

A few days ago, I found that the official version...

About MySQL 8.0.13 zip package installation method

MySQL 8.0.13 has a data folder by default. This f...

How to connect to a remote docker server with a certificate

Table of contents 1. Use scripts to encrypt TLS f...

MySql 5.6.35 winx64 installation detailed tutorial

Note: There was no error in the project startup d...

Web Design Experience

<br />The author used to be a novice in web ...

A simple method to implement scheduled backup of MySQL database in Linux

Here are the detailed steps: 1. Check the disk sp...

Example verification MySQL | update field with the same value will record binlog

1. Introduction A few days ago, a development col...