Regular Expression

De Wiki Clusterlab.com.br
Ir para navegação Ir para pesquisar
  • . = 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

Links