I need to remove newlines at the beginning and at the end of a string in ruby (some sort of trimming).
But JUST at the beginning and the end... The new lines located in the middle of the string must remain untouched.
Thank you!
|
|
|
String.strip will remove all extra whitespace from the front and back, leaving innards alone. |
|||
|
|
|
This should do it:
|
|||
|
|
|
If your intent is to strip just whitespace then the strip method should work...but if your trying to target new lines specifically then maybe try this:
the gsub method will use regular expression to target the beginning ^ and end $ locations for replacement with "". NOTE: Here I made the assumption that your newline is \r\n. This may not be platform independent. |
|||
|
|