Hi guys,I have a use case where I use regular expression to validate the input of postal code.E.g. Formula = "95000-2707".match?(/(^\d{5}$)|(^\d{5}-\d{4}$)/) for matching the US postal codes.However, this method won't work if the regular expression i...