Skip to content

Commit 985dedb

Browse files
authored
Merge pull request #2371 from vsemozhetbyt/patch-5
Update support note in 9.8 (Sets and ranges [...])
2 parents a1736bd + b19312e commit 985dedb

File tree

1 file changed

+2
-2
lines changed
  • 9-regular-expressions/08-regexp-character-sets-and-ranges

1 file changed

+2
-2
lines changed

9-regular-expressions/08-regexp-character-sets-and-ranges/article.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ alert( str.match(regexp) ); // H,i,你,好,1,2
8787

8888
Of course, we can edit this pattern: add Unicode properties or remove them. Unicode properties are covered in more details in the article <info:regexp-unicode>.
8989

90-
```warn header="Unicode properties aren't supported in Edge and Firefox"
91-
Unicode properties `pattern:p{…}` are not yet implemented in Edge and Firefox. If we really need them, we can use library [XRegExp](http://xregexp.com/).
90+
```warn header="Unicode properties aren't supported in IE"
91+
Unicode properties `pattern:p{…}` are not implemented in IE. If we really need them, we can use library [XRegExp](http://xregexp.com/).
9292
9393
Or just use ranges of characters in a language that interests us, e.g. `pattern:[а-я]` for Cyrillic letters.
9494
```

0 commit comments

Comments
 (0)