Regex Patterns

1)If we need the below pattern,
              123456.123456=(\\d{6}\\.\\d{6})
2)Only Numbers,
              "^(0|[1-9][0-9]*)$"
              

Comments