Skip to content

Regex

  • {n} Matches the previous element exactly n times.
  • {n,} Matches the previous element at least n times.
  • {n,m} Matches the previous element at least n times, but no more than m times.
\d{2,}
node.{0,10}12