In Google Sheets you have three text wrapping options: Overflow: The text 'overflows' into neighboring empty cells. This is the default setting. If neighbouring cells are not empty, the cell's wrapping will be clipped. Wrap: The text is 'wrapped' onto multiple lines within the cell. If the column is not wide enough to hold the text, the entire ...
Rounding Using Functions In Google Sheets. There are quite a few Google Sheets functions to help round numbers. Click on the type of rounding you want: Round up or down based on the number (e.g. 0.4 = down, 0.5 = up) Just round down; Just round up; Just remember to be careful when rounding using functions because of the potential issues. Round ...
Easiest way: add an extra letter at the end of the line. Select that letter. Hit enter. The letter will be replaced with a new line.
When you're focused on the cell press enter to get into edit mode:
Here is what I did.
Hit ctrl+f to search, and click the "..." button representing more options

Typed \s+$ or \n in the find field
I hope it works for you. Also, you can replace \n with any regex expression and it can be immensely helpful.
IF you are trying to use the Ctrl+F to find and replace well you can't. at least I dont know how.
but if you have a cell say A1 that contains the following : "stack,overflow" then if you type this in A2 it should work: =SUBSTITUTE(A1, ",", char(10))
https://support.google.com/docs/bin/static.py?hl=en&topic=25273&page=table.cs
you can then copy the content of A2 and in A3 right click -> Paste Special... -> Values Only.
Hope this helps
UPDATE 2016-AUG
Google Spreadsheet now support searching for newline using \n here is how:
Edit -> Find and Replace

How about following sample? This sample supposes that the line break is and \r\n.\n
\r\n, when the number of \r\n is more than 2, it is modified to char(10).=IF(REGEXMATCH(E1, "\r\n"),REGEXREPLACE(E1, "(\r\n){2,}", char(10)),REGEXREPLACE(E1, "(\n){2,}", char(10)))

If you want to remove all of the line break, you can use . In this case, the result of the result sheet becomes =CLEAN(A1).sample1sample2sample3sample4sample5
If this was not helpful for you, I'm sorry.