javascript RegExp_reg_exec_VS_str_match

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript RegExp_reg_exec_VS_str_match相关的知识,希望对你有一定的参考价值。

let str = 'PathofExile \nThe world path of Game';

//          match: Reg with/withou `g` flag
let reg = /(path)\s*/ig;
let reg2 = /(path)\s*/i;

let result1 = str.match(reg);

console.log(reg.lastIndex); //  0

//  match with global
console.log(result1);
//  0-x: every matched string

console.log(reg.lastIndex); //  0  Reason: reg is the `Formal Parameter`

//  match without global
let result2 = str.match(reg2);

console.log(result2);
//  0: whole string 1-x: group match

let result3 = reg.exec(str);  

console.log(reg.lastIndex); //  4

let result4 = reg2.exec(str);

console.log(reg.lastIndex); //  0 Explanation: `without` global flag, the lastIndex `always` reset to 0

以上是关于javascript RegExp_reg_exec_VS_str_match的主要内容,如果未能解决你的问题,请参考以下文章

javascript JavaScript isset()等效: - JavaScript

JavaScript 使用JavaScript更改CSS(JavaScript)

JavaScript之基础-1 JavaScript(概述基础语法)

前端基础-JavaScript的基本概述和语法

JavaScript

JavaScript