Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
String var = null;
var = row<in>.<valuename>;
p = Pattern.compile("[a-zA-ZÂ]+");//or other character you need;
m = p.matcher(var);
var= m.replaceAll("");
row<out>.<valuename> = var;