Remove control character from a string
9
Remove control character from a string
function removeNL(s) {
/*
** NewLine, CarriageReturn and Tab characters from a String will be removed
** and will return the new string
*/
r = "";
for (i=0; i < s.length; i++) {
if (s.charAt(i) != '\n' & s.charAt(i) != '\r' & s.charAt(i) != '\t') {
r += s.charAt(i);
}
}
return r;
}






There are currently no comments for this snippet.