You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
It would be nice to have ReplaceStringProcessor that use Java String.replace() method that is highly optimized for simple string replacements. It uses a more efficient algorithm than the Matcher.replaceAll() method used in SubstituteStringProcessor
Describe the solution you'd like
ReplaceStringProcessor implementation
final String newValue = value.replace(entry.getFrom(), entry.getTo());
recordEvent.put(entry.getSource(), newValue);
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
It would be nice to have ReplaceStringProcessor that use Java
String.replace()
method that is highly optimized for simple string replacements. It uses a more efficient algorithm than theMatcher.replaceAll()
method used in SubstituteStringProcessorDescribe the solution you'd like
ReplaceStringProcessor implementation
The text was updated successfully, but these errors were encountered: