[Solved] Java – Regex only 0 or 5 [closed]


You can use either "0|5" or "[05]". The first is an alternative, the second is a character class. They will behave identically. See the documentation for Pattern for more information on the building blocks for regular expressions.

solved Java – Regex only 0 or 5 [closed]