在TypeScript,字符串值的 matchAll() 方法返回与字符串匹配的所有结果的迭代器正则表达式,包括捕获组。 matchAll() 方法与String match(),但 match() 仅返回第一个匹配项,并且不包含捕获组。
用法:
string.matchAll(regexp: RegExp): RegExpMatchArrayIterator
返回值:返回 RegExpMatchArrayIterator 对象,这是一个生成 RegExpMatchArray 对象(表示各个匹配的数组)的迭代器。
示例 1:演示使用 matchAll() 方法从给定字符串获取电子邮件。
Javascript
let text: string =
"Please contact us at support@geeksforgeeks.org or at courses@geeksforgeeks.org";
let emailRegex = /\b[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}\b/g;
let emails = text.matchAll(emailRegex);
for (const match of emails) {
console.log("Found email address:", match[0]);
}
输出:
Found email address: support@geeksforgeeks.org
Found email address: courses@geeksforgeeks.org
示例 2:演示使用 matchAll() 方法从给定字符串获取产品 ID。
Javascript
let descriptions: string[] = [
"Product 123 (ABC-DEF) is the best!",
"Buy Product ID 456 now!",
"This is not a product description.",
];
const idRegex = /\bProduct\s+(\d+)\b|\bID\s+(\w+)\b/g;
for (const description of descriptions) {
const matches = description.matchAll(idRegex);
for (const match of matches) {
console.log("Product ID:", match[1] || match[2]);
}
}
输出:
Product ID: 123
Product ID: 456
相关用法
- TypeScript String match()用法及代码示例
- TypeScript String charAt()用法及代码示例
- TypeScript String charCodeAt()用法及代码示例
- TypeScript String concat()用法及代码示例
- TypeScript String indexOf()用法及代码示例
- TypeScript String lastIndexOf()用法及代码示例
- TypeScript String localeCompare()用法及代码示例
- TypeScript String replace()用法及代码示例
- TypeScript String search()用法及代码示例
- TypeScript String slice()用法及代码示例
- TypeScript String split()用法及代码示例
- TypeScript String substr()用法及代码示例
- TypeScript String substring()用法及代码示例
- TypeScript String includes()用法及代码示例
- TypeScript String codePointAt()用法及代码示例
- TypeScript String repeat()用法及代码示例
- TypeScript String endsWith()用法及代码示例
- TypeScript String trim()用法及代码示例
- TypeScript String padStart()用法及代码示例
- TypeScript String normalize()用法及代码示例
- TypeScript String padEnd()用法及代码示例
- TypeScript String.fromCharCode()用法及代码示例
- TypeScript String.raw()用法及代码示例
- TypeScript String转Boolean用法及代码示例
- TypeScript String转JSON用法及代码示例
注:本文由纯净天空筛选整理自pankajbind大神的英文原创作品 TypeScript String matchAll() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。