JavaScript 的 String 对象提供了几个使用正则表达式的方法,这些方法可以让我们轻松地进行字符串搜索、替换和提取操作。本文将详细介绍这些方法的使用。
1. String.prototype.match()
match() 方法检索返回一个字符串匹配正则表达式的结果。
基本用法
const text = 'The quick brown fox jumps over the lazy dog.';
const regex = /[a-z]+/g;
const matches = text.match(regex);
console.log(matches);
// 输出: ['he', 'quick', 'brown', 'fox', 'jumps', 'over', 'the', 'lazy', 'dog']
2000/1/10大约 2 分钟