Does replacement on the given string with token matching.
This uses the defined begintoken and endtoken values which default to @ for both.
String replacedLine = line;
for (Enumeration e = filterSets.elements(); e.hasMoreElements();) {
FilterSet filterSet = (FilterSet) e.nextElement();
replacedLine = filterSet.replaceTokens(replacedLine);
}
return replacedLine;