Answers for "javascript remove final newline from string"

7

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
Posted by: Guest on August-05-2019
10

how to remove all whitespace from string java

st = st.replaceAll("\\s+","")
Posted by: Guest on April-11-2020
4

java 8 remove spaces from string

a.replaceAll("\\s+","");
Posted by: Guest on April-14-2020
0

javascript remove final newline from string

// Remove the trailing newline(s) from a string
str.replace(/\n*$/, "");
Posted by: Guest on May-30-2020

Code answers related to "javascript remove final newline from string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language