[ create a new paste ] login | about

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

PHP, pasted on Jun 20:
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
$string = <<<heredoc
Poetry is a form of literature ~ that uses aesthetic and rhythmic
qualities of language -- such as phonaesthetics, sound symbolism

metre to evoke meanings in addition to, or in place of, the prosaic ostensible meaning
heredoc;

$string = preg_replace( '/.*(--|~).*[\r]?[\n]?/', '', $string);

echo $string;

?>


Output:
1
2

metre to evoke meanings in addition to, or in place of, the prosaic ostensible meaning


Create a new paste based on this one


Comments: