minor fixes
This commit is contained in:
parent
eb23b2d7b8
commit
d5128182a5
2 changed files with 9 additions and 3 deletions
|
@ -59,6 +59,10 @@ alert( str.match(/\d+\b(?!€)/g) ); // 2 (the price is not matched)
|
|||
|
||||
## Lookbehind
|
||||
|
||||
```warn header="Lookbehind browser compatibility"
|
||||
Please Note: Lookbehind is not supported in non-V8 browsers, such as Safari, Internet Explorer.
|
||||
```
|
||||
|
||||
Lookahead allows to add a condition for "what follows".
|
||||
|
||||
Lookbehind is similar, but it looks behind. That is, it allows to match a pattern only if there's something before it.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue