I have a string of the form:
canonical_class_name[key1="value1",key2="value2",key3="value3",...]
The purpose is to capture the canonical_class_name in a group and then alternating key=value groups. Currently it does not match a test string (in the following program, testString).
There must be at least one key/value pair, but there may be many such pairs.
Question: Currently the regex grabs the canonical class name, and the first key correctly but then it gobbles up everything until the last double quote, how do I make it grab the key value pairs lazy?
Here is the regular expression which the following program puts together:
(\S+)\[\s*(\S+)\s*=\s*"(.*)"\s*(?:\s*,\s*(\S+)\s*=\s*"(.*)"\s*)*\]
Depending on your preference you may find the programs version easier to read.
If my program is passed the String:
org.myobject[key1=\"value1\", key2=\"value2\", key3=\"value3\"]
...these are the groups I get:
Group1 contains: org.myobject<br/>
Group2 contains: key1<br/>
Group3 contains: value1", key2="value2", key3="value3<br/>
One more note, using String.split() I can simplify the expression, but I'm using this as a learning experience to better my regex understanding, so I don't want to use such a short cut.
import java.util.ArrayList;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class BasicORMParser {
String regex =
"canonicalName\\[ map (?: , map )*\\]"
.replace("canonicalName", "(\\S+)")
.replace("map", "key = \"value\"")
.replace("key", "(\\S+)")
.replace("value", "(.*)")
.replace(" ", "\\s*");
List<String> getGroups(String ormString){
List<String> values = new ArrayList();
Pattern pattern = Pattern.compile(regex);
Matcher matcher = pattern.matcher(ormString);
if (matcher.matches() == false){
String msg = String.format("String failed regex validiation. Required: %s , found: %s", regex, ormString);
throw new RuntimeException(msg);
}
if(matcher.groupCount() < 2){
String msg = String.format("Did not find Class and at least one key value.");
throw new RuntimeException(msg);
}
for(int i = 1; i < matcher.groupCount(); i++){
values.add(matcher.group(i));
}
return values;
}
}