We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b57f2eb commit 95311c8Copy full SHA for 95311c8
9-regular-expressions/09-regexp-quantifiers/article.md
@@ -117,7 +117,7 @@ alert( "0 1 12.345 7890".match(/\d+\.\d+/g) ); // 12.345
117
118
2. 进阶版:`pattern:/<[a-z][a-z0-9]*>/i`
119
120
-根据标准,HTML 标签名称可以在除了第一个位置之外的任何位置有一个数字,例如 `<h1>`。
+ 根据标准,HTML 标签名称可以在除了第一个位置之外的任何位置有一个数字,例如 `<h1>`。
121
122
```js run
123
alert( "<h1>Hi!</h1>".match(/<[a-z][a-z0-9]*>/gi) ); // <h1>
0 commit comments