Merge pull request #2371 from vsemozhetbyt/patch-5
Update support note in 9.8 (Sets and ranges [...])
This commit is contained in:
commit
985dedbefd
1 changed files with 2 additions and 2 deletions
|
@ -87,8 +87,8 @@ alert( str.match(regexp) ); // H,i,你,好,1,2
|
|||
|
||||
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>.
|
||||
|
||||
```warn header="Unicode properties aren't supported in Edge and Firefox"
|
||||
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/).
|
||||
```warn header="Unicode properties aren't supported in IE"
|
||||
Unicode properties `pattern:p{…}` are not implemented in IE. If we really need them, we can use library [XRegExp](http://xregexp.com/).
|
||||
|
||||
Or just use ranges of characters in a language that interests us, e.g. `pattern:[а-я]` for Cyrillic letters.
|
||||
```
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue