Can any one help me with regex patter to allow address validation based on below limitations:
- Allow only alphanumeric characters, spaces, apostrophes ('), dashes (-), commas, (,), periods (.), number signs (#), and slashes (/),
- Must contain at least one numeral, one alphabetic character, and one space.
I tried below patterns:
/^(?=.*[0-9])(?=.*[a-zA-Z])([a-zA-Z0-9]+)$/
(?=.*\d)(?=.* ).{8,}