Skip to content

Commit 026b69a

Browse files
committed
Conflicts fixed on "Lookahead et Lookbehind" page in french language
1 parent a0ac3ed commit 026b69a

File tree

1 file changed

+4
-8
lines changed
  • 9-regular-expressions/14-regexp-lookahead-lookbehind

1 file changed

+4
-8
lines changed

9-regular-expressions/14-regexp-lookahead-lookbehind/article.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Éléments précédents et éléments suivants
1+
# Lookahead et Lookbehind
22

33
Parfois nous avons juste besoin de trouver les motifs précédents ou suivant un autre motif.
44

@@ -59,15 +59,11 @@ alert( str.match(/\d+\b(?!€)/g) ); // 2 (le prix ne correspond pas au motif)
5959

6060
## Lookbehind
6161

62-
<<<<<<< HEAD
63-
Lookahead permet d'ajouter une condition sur "ce qui suit".
64-
=======
65-
```warn header="Lookbehind browser compatibility"
66-
Please Note: Lookbehind is not supported in non-V8 browsers, such as Safari, Internet Explorer.
62+
```warn header="Compatibilité des navigateurs pour Lookbehind"
63+
Veuillez noter : Lookbehind n'est pas pris en charge dans les navigateurs non-V8, tels que Safari, Internet Explorer.
6764
```
6865

69-
Lookahead allows to add a condition for "what follows".
70-
>>>>>>> 71da17e5960f1c76aad0d04d21f10bc65318d3f6
66+
Lookahead permet d'ajouter une condition sur "ce qui suit".
7167

7268
Lookbehind est similaire a loopahead, mais il regarde derrière.Ça veut dire qu'il établit une correspondance seulement si il y a quelquechose avant lui,
7369

0 commit comments

Comments
 (0)