vote up 0 vote down star

Hi All,

Please help me to solve this.

This is my string

str = "aaa\n\n\nbbb\n\nccc\ddd\n" means four blank lines, all together eight lines

I want to return this in one line

Output should be like this (aaabbbcccddd) in single line

I used various trim functions to get the output but still i am failing to do it. if Anyone know the possible way, please help on this.

Thanks -Samitha

flag
To clarify: Do you want all line breaks removed, or just lines that are blank? – Matchu Jun 24 at 19:24
(I think weepos was asking that you click the check mark next to Matchu's answer, so that it turns green. This marks this answer as the accepted solution, gives Matchu bonus points, give you bonus points, and gives a clear visual indicator to all that the problem has an answer) – rampion Jun 25 at 14:40

3 Answers

vote up 1 vote down

The Ruby (and slightly less Perl-ish) way:

new_str = str.delete "\n"

...or if you want to do it in-place:

str.delete! "\n"
link|flag
+1 for not using unnecessary regexes. – molf Jun 25 at 22:05
vote up 1 vote down
> str = "aaa\n\n\nbbb\n\nccc\ddd\n" 
=> "aaa\n\n\nbbb\n\ncccddd\n"
> str.gsub("\n", "")
=> "aaabbbcccddd"
link|flag
Thanks lot mcl its working.. – samitha K Jun 24 at 19:38
vote up 6 vote down
str.gsub(/\n/,'')
link|flag
Wow Its working this is what I wanted ..amazing.., I struggled lot, you guys solved it within 1minute. Thank you very much. I’m new to ruby language as well as to this site. Hopefully I’ll be able to solve my ruby related questions from all of you. Thanks again – samitha K Jun 24 at 19:45
The best way to say thank you would be to choose this answer as your request solution. ;) – weppos Jun 24 at 20:58
yes exactly :) im using this solution, thanks – samitha K Jun 25 at 9:48
There's a little check mark next to it - that's what you click when you're using an answer ^_^ – Matchu Jun 25 at 15:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.