How to construct a regex not to contain a set of strings within.
For this example, I want to validate the Address Line 1 text box so that it wont contain any secondary address parts such 'Apt', 'Bldg','Ste','Unit' etc.
|
|
|
A regex can be used to verify that a string does not contain a set of words. Here is a tested Java code snippet with a commented regex which does precisely this:
This assumes that the words must be "whole" words and that the "bad" words should be recognized regardless of case. Note also, (as others have correctly stated), that this is not as efficient as simply checking for the presence of bad words and then taking the logical NOT. |
|||||||||||
|
|
Rather than trying to construct a regex to match strings that don't contain these substrings, why not construct a regex to match strings that do contain one or more of them? Then if that regex returns |
|||||
|
|
A more theoretical answer: Deterministic Finite Automata have a one-to-one correspondence with regular expressions; that is, for every regular language, you can construct a DFA that will accept exactly the strings that are contained in the regular language. And, for every regular language, you can construct a regular expression that will match only the strings that are in that language. Thus, for any regular expression, you can construct a DFA that accepts exactly the same strings, and vice versa. A Non-Deterministic Finite Automaton (NFA) can be turned into a Deterministic Finite Automaton (DFA) by constructing a DFA state for every combination of states in the NFA. (This is |Q|2 states, which is a finite number.) With that knowledge, we can reverse a DFA This can be done by turning all of the end states into temporary start states, and the start state into an end state. Then, we proceed to add epsilon-transitions from a new starting state to every one of these temporary start states to make it a valid NFA (epsilon-NFA, if you want to nitpick). Then, we turn it into a DFA as we know we can do. The only remaining step is to turn our new DFA into a regular expression. The algorithm for this is stupidly simple: for every path from start to end states, we include that in the regular expression by using |
|||
|
|
You do the negation of the strings that you don't want - e.g.
This gives you:
|
|||
|