Attempting to come up with a regex pattern that will allow the entry of the specified input into an HTML input field:
- The input must begin with 0
- The input can be left empty and characters may be deleted by the user
^[^1-9]{0,1}[0-9\\s-\\/]*$
Unfortunately, with the above regex, I am unable to delete the initial 0...
^0[0-9\\s-\\/]*$"