You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
The PatternMatch analyzer in Deequ currently lacks support for validating common US data formats, such as phone numbers and postal codes. This forces users to implement custom regex validation, leading to inconsistent implementations.
Describe the solution you'd like
Add built-in support for validating US phone numbers and postal codes using the following regex patterns:
Custom regex implementations, but these add complexity and inconsistency across projects.
Additional context
These patterns are commonly used in US data validation (e.g., customer records, shipping data). Including them in Deequ would simplify validation workflows.
Additionally, the current codebase has limited unit tests and lacks examples demonstrating the use of PatternMatch.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
The
PatternMatch
analyzer in Deequ currently lacks support for validating common US data formats, such as phone numbers and postal codes. This forces users to implement custom regex validation, leading to inconsistent implementations.Describe the solution you'd like
Add built-in support for validating US phone numbers and postal codes using the following regex patterns:
US Phone Number Regex:
US Postal Code Regex:
Describe alternatives you've considered
Custom regex implementations, but these add complexity and inconsistency across projects.
Additional context
These patterns are commonly used in US data validation (e.g., customer records, shipping data). Including them in Deequ would simplify validation workflows.
Additionally, the current codebase has limited unit tests and lacks examples demonstrating the use of PatternMatch.
The text was updated successfully, but these errors were encountered: