1 18 19 package org.apache.jmeter.functions.util; 20 21 import org.apache.oro.text.perl.Perl5Util; 22 23 26 public final class ArgumentEncoder 27 { 28 private static Perl5Util util = new Perl5Util(); 29 private static String expression = "s#([${}(),\\\\])#\\$1#g"; 30 31 public static String encode(String s) 32 { 33 return util.substitute(expression, s); 34 } 35 36 39 private ArgumentEncoder() 40 { 41 } 42 } 43 | Popular Tags |