Skip to content

Capturing groups #320

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
May 15, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update 9-regular-expressions\11-regexp-groups\article
  • Loading branch information
marcellosurdi committed May 4, 2021
commit 005e4250174c66a66e2c55039676bf0f556513b1
2 changes: 1 addition & 1 deletion 9-regular-expressions/11-regexp-groups/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ alert("[email protected] @ [email protected]".match(regexp)); // [email protected], [email protected]

Questa regexp non è perfetta, ma per lo più funziona e aiuta a correggere errori di battitura accidentali. L'unica verifica davvero efficace per un'email può essere fatta soltanto inviandone una.

## I contenuti tra parentesi della corrispondenza
## I contenuti tra parentesi nella corrispondenza

I gruppi tra parentesi sono numerati da sinistra verso destra. Il motore di ricerca memorizza il contenuto associato a ciascuno di essi e consente di recuperarlo nel risultato.

Expand Down