Re: RegexReplaceProcessorFactory replacement string support for match groups

2013-10-15 Thread Jack Krupansky
replacement string support for match groups Hi Hoss, In RegexReplaceProcessorFactory, this line means that you can't use match groups in the replacement string: replacement = Matcher.quoteReplacement(replacementParam.toString()); What's the reasoning behind this? Or am I missing some

RegexReplaceProcessorFactory replacement string support for match groups

2013-10-15 Thread Ken Krugler
Hi Hoss, In RegexReplaceProcessorFactory, this line means that you can't use match groups in the replacement string: replacement = Matcher.quoteReplacement(replacementParam.toString()); What's the reasoning behind this? Or am I missing something here, and groups can be used? It's making i