diff --git a/9-regular-expressions/14-regexp-lookahead-lookbehind/article.md b/9-regular-expressions/14-regexp-lookahead-lookbehind/article.md index aee0b8ffa..cf990a77a 100644 --- a/9-regular-expressions/14-regexp-lookahead-lookbehind/article.md +++ b/9-regular-expressions/14-regexp-lookahead-lookbehind/article.md @@ -125,6 +125,6 @@ Tipi di lookaround: | Pattern | Tipo | Riscontri | |--------------------|------------------|---------| | `X(?=Y)` | Lookahead positivo | `pattern:X` se seguito da `pattern:Y` | -| `X(?!Y)` | Lookahead negativo | `pattern:X` se seguito da `pattern:Y` | +| `X(?!Y)` | Lookahead negativo | `pattern:X` se non seguito da `pattern:Y` | | `(?<=Y)X` | Lookbehind positivo | `pattern:X` se dopo `pattern:Y` | -| `(?