A simple question - I have a validator that only allows ints (numbers) in the following format: 123-123-1234, but I need to modify the following to allow chars & ints between the dashes. What should I replace the \d with?
Budget_Number.match(/^(\d{3})-?\d{3}-?\d{4}$/);