Monday, June 3, 2024
 Popular · Latest · Hot · Upcoming
193
rated 0 times [  199] [ 6]  / answers: 1 / hits: 59189  / 11 Years ago, fri, december 27, 2013, 12:00:00

I've been looking for an answer to this, but whatever method I use it just doesn't seem to cut off the new line character at the end of my string.



Here is my code, I've attempted to use str.replace() to get rid of the new line characters as it seems to be the standard answer for this problem:



process.stdin.on(data, function(data) {
var str;
str = data.toString();
str.replace(/r?n|r/g, );
return console.log(user typed: + str + str + str);
});


I've repeated the str object three times in console output to test it. Here is my result:



hi
user typed: hi
hi
hi


As you can see, there are still new line characters being read between each str. I've tried a few other parameters in str.replace() but nothing seems to work in getting rid of the new line characters.


More From » regex

 Answers
2

You are calling string.replace without assigning the output anywhere. The function does not modify the original string - it creates a new one - but you are not storing the returned value.



Try this:



...
str = str.replace(/r?n|r/g, );
...





However, if you actually want to remove all whitespace from around the input (not just newline characters at the end), you should use trim:



...
str = str.trim();
...


It will likely be more efficient since it is already implemented in the Node.js binary.


[#73529] Wednesday, December 25, 2013, 11 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
lamarmaximiliand

Total Points: 388
Total Questions: 104
Total Answers: 104

Location: Oman
Member since Fri, Dec 23, 2022
1 Year ago
;