Regular Expression: mudanças entre as edições
Ir para navegação
Ir para pesquisar
Sem resumo de edição |
Sem resumo de edição |
||
Linha 1: | Linha 1: | ||
* . = any char | * . = any char | ||
* \. = the actual dot character | * \. = the actual dot character | ||
Linha 5: | Linha 5: | ||
* .* = .{0,} = match any char zero or more times | * .* = .{0,} = match any char zero or more times | ||
* .+ = .{1,} = match any char one or more times | * .+ = .{1,} = match any char one or more times | ||
=Links= | |||
*https://regexone.com/ | |||
*https://regex101.com/ |
Edição atual tal como às 20h43min de 19 de junho de 2019
- . = any char
- \. = the actual dot character
- .? = .{0,1} = match any char zero or one times
- .* = .{0,} = match any char zero or more times
- .+ = .{1,} = match any char one or more times