javascript remove final newline from string code example
Example 1: javascript remove line breaks from string
var stringWithLineBreaks = `
O boy
I've got
Breaks
`;
var stringWithoutLineBreaks = stringWithLineBreaks.replace(/(\r\n|\n|\r)/gm, "");//remove those line breaks
Example 2: how to remove all whitespace from string java
st = st.replaceAll("\\s+","")
Example 3: java 8 remove spaces from string
a.replaceAll("\\s+","");
Example 4: javascript remove final newline from string
// Remove the trailing newline(s) from a string
str.replace(/\n*$/, "");