final int paramQuoteCharEnd = val.lastIndexOf(paramQuoteChar);
matcherParam = val.substring(singleQuote1 + 1, paramQuoteCharEnd);
matcherName = matcherName.split("\\s")[0];
}
final CommentMatcher commentMatcher;
if (matcherName.equalsIgnoreCase(STARTS_WITH) || matcherName.equalsIgnoreCase(STARTS_WITH_FUZZY)
|| matcherName.equalsIgnoreCase(STARTS_WITH_FUZZY2)) {
commentMatcher = new org.supercsv.comment.CommentStartsWith(matcherParam);
} else if (matcherName.equalsIgnoreCase(MATCHES) || matcherName.equalsIgnoreCase(MATCHES_FUZZY)) {
commentMatcher = new CommentMatches(matcherParam);