Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/artodeschini/regex
Este repositorio demostra praticas de estudos dicas com regex
https://github.com/artodeschini/regex
Last synced: about 19 hours ago
JSON representation
Este repositorio demostra praticas de estudos dicas com regex
- Host: GitHub
- URL: https://github.com/artodeschini/regex
- Owner: artodeschini
- Created: 2022-08-04T14:37:48.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-08-12T14:20:09.000Z (over 2 years ago)
- Last Synced: 2023-03-05T20:13:39.257Z (over 1 year ago)
- Language: JavaScript
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Regex
Este repositorio demostra praticas de estudos dicas com regex
## requisitos
* nodejs
* javascript
* go
* ruby
* java
* python 3## Descricao dos conteudos
[executando diversas linguagens](01_executando_regex/README.md)
[consideracoes iniciais](02_start_regex/README.md)## Metacaracteres
Caracteres especiais no uso de Regex
### Quantificadores
| Metacaracter | Nome | Significado |
| :-: | - | - |
| ? | Opcional | Zero ou nenhum |
| * | Asterisco | Zero ou mais |
| + | Mais | Um ou mais |
|{n, m} | Chaves | De n até m |### Âncoras
| Metacaracter | Nome | Significado |
| :-: | - | - |
| ˆ | Circunflexo | Inicio de linha |
| $ | Cifrão | Fim de linha |
| \b | Borda | Inicio ou fim de palavra |## Outros
| Metacaracter | Nome | Significado |
| :-: | - | - |
| \ | Escape | Uso de metacaracter como literal |
| \| | Ou | Operação Ou |
| () | Grupo | Define um grupo |
| \1...\q | Retrovisor | Resgata grupos já definidos |