My dilemma is as follows: I'm attempting to match Strings in an external file to mutually-exclusive regular expressions (i.e a String cannot match multiple RegExs
What algorithm would you suggest that would allow for me to match a given String to a RegEx that is guaranteed to not intersect with the other use-cases?
The program is syntactically valid, however there is overlapping as it stands. There are 2.5m lines in the file.
I was considering tokenizing each row in the file, then having flags for each condition (so, if 'x' contains [A-Z]+ set UPPERCASE flag)
- Regular expressions must check for the presence of:
- Punctuation
- Upper-case letters
- Lower-case letters
- Integers
Possible use-cases where:
U = Upper-case letter L = Lower-case letter P = Punctuation N = Number
---- null
U--- [A-Z]+
UL-- [A-Za-z]+
U-N- [A-Z0-9]+
ULN- [A-Za-z0-9]+
ULNP [\\p{Punct}\\sA-Za-z0-9]+
-L-- [a-z]+
-LN- [a-z0-9]+
--N- [0-9]
---P [\\p{Punct}\\s]+
U--P [\\p{Punct}\\sA-Z]+
-L-P [\\p{Punct}\\sa-z]+
--NP [\\p{Punct}\\s0-9]+
UL-P [\\p{Punct}\\sA-Za-z]+
U-NP [\\p{Punct}\\sA-Z0-9]+
ULNP [\\p{Punct}\\sA-Za-z0-9]+
What I have thus far (inefficient, with overlapping RegExs)
public static void main(String[] args) {
File file = new File("/home/tyler/workspace/PasswordAnalyzer/docs/test.txt");
try {
Scanner scan = new Scanner(file);
while (scan.hasNextLine()) {
String s = scan.nextLine();
/*****************************************
* Evaluate password Strings using RegExs
******************************************/
if(s.matches("[A-Z0-9]+")){
//Upper-case & numeric
} else if(s.matches("[a-z0-9]+")){
//Lower-case & numeric
} else if(s.matches("[A-Za-z0-9]+")){
//Alphanumeric
} else if(s.matches("[A-Za-z]+")){
//Upper-case & lower-case
} else if(s.matches("[0-9]+")){
//Numeric
} else if(s.matches("[A-Z]+")){
//Upper-case
} else if(s.matches("[a-z]+")){
//Lower-case
} else if(s.matches("[\\p{Punct}\\s]+")){
//Punctuation
} else if(s.matches("[\\p{Punct}\\sA-Z]+")){
//Punctuation & upper-case
} else if(s.matches("[\\p{Punct}\\sa-z]+")){
//Punctuation & lower-case
} else if(s.matches("[\\p{Punct}\\s0-9]+")){
//Punctuation & numeric
} else if(s.matches("[\\p{Punct}\\sA-Za-z]+")){
//Punctuation & alphabetical
} else if(s.matches("[\\p{Punct}\\sA-Z0-9]+")){
//Punctuation & upper-case & numeric
} else if(s.matches("[\\p{Punct}\\sa-z0-9]+")){
//Punctuation & lower-case & numeric
} else if(s.matches("[\\p{Punct}\\sA-Za-z0-9]+")){
//Punctuation & alphanumeric
} else {
System.err.println("ERROR: unhandled RegEx");
}
} //loop
} catch (FileNotFoundException fnfe){
System.err.println(fnfe.getMessage());
}
}//main()
Revision: Setting flags for 4 possible conditions (upper-case, lower-case, numeric, punctuation), dynamically generating the name of the corresponding variable, incrementing accordingly. Thoughts?
(bottom of main())
public static void main(String[] args) {
File file = new File("/home/tyler/workspace/PasswordAnalyzer/docs/test.txt");
Analyzer a = new Analyzer(); //used by Java reflections object
try {
Scanner scan = new Scanner(file);
while (scan.hasNextLine()) {
String s = scan.nextLine();
//Flags
boolean U_flag = false;
boolean L_flag = false;
boolean N_flag = false;
boolean P_flag = false;
for(int i=0; i<s.length(); i++){
String c = s.substring(i, i);
/*****************************************
* Set flags (U,L,N,P)
****************************************/
//U_flag (upper-case)
if(c.matches("[A-Z]+")){
U_flag = true;
}
//L_flag (lower-case)
if(c.matches("[a-z]+")){
L_flag = true;
}
//N_flag (numeric)
if(c.matches("[0-9]+")){
N_flag = true;
}
//P_flag (punctuation)
if(c.matches("[\\p{Punct}\\s]+")){
P_flag = true;
}
/*****************************************
* Identify corresponding counter variable
****************************************/
String dest = "";
//U_flag
if(U_flag){dest.concat("U");
} else {dest.concat("_");}
//L_flag
if(L_flag){dest.concat("L");
} else {dest.concat("_");}
//N_flag
if(N_flag){dest.concat("N");
} else {dest.concat("_");}
//P_flag
if(P_flag){dest.concat("P");}
//increment variable stored in dest (Java reflections?)
}//for-loop
} //while-loop
} catch (FileNotFoundException fnfe){
System.err.println(fnfe.getMessage());
}
}//main()
orin the regular expression and then list all the regexps'es in a single regexp with or in between? – Thorbjørn Ravn Andersen Nov 17 '12 at 21:35