[ create a new paste ] login | about

Link: http://codepad.org/bsuoJuoD    [ raw code | output | fork ]

PHP, pasted on Sep 13:
1
2
3
4
5
6
7
<?php

$str = 'The owner of Hill House is Scott Croyle, senior vice president of design at HTC. At two bedrooms, 2 1/2 baths and a study, the home is just large enough to share with his wife and son. Its modest scale allowed Bernstein to emphasize quality materials over quantity of space. "It\'s almost a negative value in that (tech) community," said Bernstein of over-the-top homes. "There\'s a real emphasis on not seeking a mansion right away."\n\n';

$str = preg_replace('/(\\\n)+\z/', '', $str); 

echo $str;


Output:
1
The owner of Hill House is Scott Croyle, senior vice president of design at HTC. At two bedrooms, 2 1/2 baths and a study, the home is just large enough to share with his wife and son. Its modest scale allowed Bernstein to emphasize quality materials over quantity of space. "It's almost a negative value in that (tech) community," said Bernstein of over-the-top homes. "There's a real emphasis on not seeking a mansion right away."


Create a new paste based on this one


Comments: