Skip to content

aba_routing_number

aba_routing_number

Classes:

Name Description
AbaRoutingNumber

ABA Routing Number regex pattern matcher. Pattern and label keywords both based on:

AbaRoutingNumber()

Bases: RegexPredictor

ABA Routing Number regex pattern matcher. Pattern and label keywords both based on: https://docs.microsoft.com/en-us/exchange/policy-and-compliance/data-loss-prevention/sensitive-information-types?view=exchserver-2019#aba-routing-number

Formatted and unformatted strings are both supported.

Examples:

{"aba": "8675-3090-1"}

Source code in src/nemo_safe_synthesizer/pii_replacer/ner/regexes/aba_routing_number.py
def __init__(self):
    entity = Entity.ABA_ROUTING_NUMBER
    super().__init__(entity=entity, patterns=PATTERNS)