正则表达式(Regular Expression,简称regex)是一种用于匹配和处理字符串的强大工具。在Node.js中,正则表达式是通过RegExp对象来表示的。以下是一些常用的正则表达式语法和如何在Node.js中使用它们的示例。
/abc/
。new RegExp()
构造函数创建正则表达式对象,例如:new RegExp('abc')
。.
:匹配任意单个字符(除了换行符)。^
:匹配字符串的开始。$
:匹配字符串的结束。*
:匹配前面的子表达式零次或多次。+
:匹配前面的子表达式一次或多次。?
:匹配前面的子表达式零次或一次。{n}
:匹配前面的子表达式恰好n次。{n,}
:匹配前面的子表达式至少n次。{n,m}
:匹配前面的子表达式至少n次,但不超过m次。[]
:匹配方括号内的任意一个字符。[^]
:匹配方括号外的任意一个字符。|
:匹配两个表达式中的任意一个。()
:分组,将几个字符作为一个单元进行处理。\
:转义字符,用于匹配特殊字符。const regex = /\d+/; // 匹配一个或多个数字
const str = 'There are 123 apples and 456 oranges.';
const match = str.match(regex); // 返回 ["123"]
const regex = /apples|oranges/g; // 匹配 "apples" 或 "oranges"
const str = 'I like apples and oranges.';
const newStr = str.replace(regex, 'fruits'); // 返回 "I like fruits and fruits."
const regex = /(\d+)-(\w+)/; // 匹配数字-单词格式,并捕获分组
const str = 'The product code is 123-abc.';
const match = str.match(regex); // 返回 ["123-abc", "123", "abc"]
const regex = new RegExp('\\d+', 'g'); // 使用构造函数创建正则表达式对象
const str = 'There are 123 apples and 456 oranges.';
const matches = str.match(regex); // 返回 ["123", "456"]
\d
需要写成\\d
。i
标志,例如:/abc/i
。领取专属 10元无门槛券
手把手带您无忧上云