Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
public static String removeChar(int ascii, String value, String replaceVal) {
String returnVal = null;
if(value!=null){
char asciiChar = (char)ascii;
String replaceString = ""+asciiChar;
returnVal = value.replaceAll(replaceString, replaceVal);
}
return returnVal;
}
routines.MyRoutine.removeChar(13,row1.column1, "")
routines.MyRoutine.removeChar(13,routines.MyRoutine.removeChar(10,row1.column1, ""), "")