if (matcher.group(2).equals("*")) {
regexList.add(r.star());
} else if (matcher.group(2).equals("+")) {
regexList.add(r.atLeastOnce());
} else if (matcher.group(2).equals("?")) {
regexList.add(r.optional());
}
ctx.setValue("token", token);
ctx.setValue("index", ++index);
}