This commit is contained in:
joaquinelio 2021-06-10 00:02:47 -03:00 committed by GitHub
parent 581802dad3
commit 0e49461c92
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -335,7 +335,7 @@ In the example below we only get the name `match:John` as a separate member of t
let str = "Gogogo John!";
*!*
// ?: exludes 'go' from capturing
// ?: excludes 'go' from capturing
let regexp = /(?:go)+ (\w+)/i;
*/!*