fork download
  1. #!/bin/bash
  2. grep -oE '[0-9]{,2}_' <<< "12_ 21"
  3. grep -oP '[0-9]{,2}_' <<< "21_ 1{,2}_"
Success #stdin #stdout 0.01s 5316KB
stdin
Standard input is empty
stdout
12_
1{,2}_