You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Buongiorno,
leggendo il vostro tutorial, nella pagina Regular expression / Lookahead e lookbehind ho notato un piccolo lapsus, la mancanza di un "non" nelle descrizioni presenti nella tabella Tipi di lookaround:
X(?!Y) Lookahead negativo X se seguito da Y >>> X se non seguito da Y
(?<!Y)X Lookbehind negativo X se dopo Y >>> X se non preceduto da Y
Complimenti per il vostro approfondito tutorial JavaScript.
Cordiali saluti.