[ create a new paste ] login | about

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

jtsternberg - PHP, pasted on May 4:
<?php

$results = "
<ol class=\"gtc-list\">
	<li>
		<a class=\"gtc-link\" href=\"/news/poll-should-the-annual-canadian-seal-hunt-be-banned/\"> » POLL: Should the annual Canadian seal hunt be banned? [8081 Views]</a>
	</li>
	<li>
		<a class=\"gtc-link\" href=\"/news/wildlife-photo-adventure-in-costa-rica/\"> » Wildlife Photo Adventure in Costa Rica! [6113 Views]</a>
	</li>
	<li>
		<a class=\"gtc-link\" href=\"/news/wild-tigers-of-india-in-battle/\"> » Wild Tigers of India – in Battle! [4077 Views]</a>
	</li>
	<li>
		<a class=\"gtc-link\" href=\"/news/poll-is-it-time-to-close-our-zoos/\"> » POLL: Is it time to close our zoos? [3270 Views]</a>
	</li>
	<li>
		<a class=\"gtc-link\" href=\"/news/poll-should-orcas-and-dolphins-be-kept-in-captivity/\"> » POLL: Should orcas and dolphins be kept in captivity? [1971 Views]</a>
	</li>
	<li>
		<a class=\"gtc-link\" href=\"/news/animals-rule-chernobyl-30-years-after-nuclear-disaster/\">Animals Rule Chernobyl 30 Years After Nuclear Disaster –  [1283 Views]</a>
	</li>
	<li>
		<a class=\"gtc-link\" href=\"/news/master-of-the-sky-owl-versus-wolf/\">Master of the Sky: Owl versus Wolf –  [1227 Views]</a>
	</li>
	<li>
		<a class=\"gtc-link\" href=\"/news/more-bald-eagles-have-died-mysteriously/\">More Bald Eagles Have Died Mysteriously –  [1096 Views]</a>
	</li>
	<li>
		<a class=\"gtc-link\" href=\"/news/poll-should-the-lynx-be-rewilded-in-the-uk/\">POLL: Should the lynx be rewilded in the UK? –  [1063 Views]</a>
	</li>
	<li>
		<a class=\"gtc-link\" href=\"/news/poll-should-the-badger-cull-in-the-uk-be-stopped/\">POLL: Should the badger cull in the UK be stopped? –  [1015 Views]</a>
	</li>
</ol>";

function modify_gtc_list_output( $output ) {
	$to_remove = array(
		' » ',
		' &raquo; ',
		'» ',
		'&raquo; ',
	);
	$output = str_replace( $to_remove, '', $output );

	return $output;
}

echo $results;
echo "\n";
echo "\n";
echo "\n";
echo modify_gtc_list_output( $results );


Output:

<ol class="gtc-list">
	<li>
		<a class="gtc-link" href="/news/poll-should-the-annual-canadian-seal-hunt-be-banned/"> » POLL: Should the annual Canadian seal hunt be banned? [8081 Views]</a>
	</li>
	<li>
		<a class="gtc-link" href="/news/wildlife-photo-adventure-in-costa-rica/"> » Wildlife Photo Adventure in Costa Rica! [6113 Views]</a>
	</li>
	<li>
		<a class="gtc-link" href="/news/wild-tigers-of-india-in-battle/"> » Wild Tigers of India – in Battle! [4077 Views]</a>
	</li>
	<li>
		<a class="gtc-link" href="/news/poll-is-it-time-to-close-our-zoos/"> » POLL: Is it time to close our zoos? [3270 Views]</a>
	</li>
	<li>
		<a class="gtc-link" href="/news/poll-should-orcas-and-dolphins-be-kept-in-captivity/"> » POLL: Should orcas and dolphins be kept in captivity? [1971 Views]</a>
	</li>
	<li>
		<a class="gtc-link" href="/news/animals-rule-chernobyl-30-years-after-nuclear-disaster/">Animals Rule Chernobyl 30 Years After Nuclear Disaster –  [1283 Views]</a>
	</li>
	<li>
		<a class="gtc-link" href="/news/master-of-the-sky-owl-versus-wolf/">Master of the Sky: Owl versus Wolf –  [1227 Views]</a>
	</li>
	<li>
		<a class="gtc-link" href="/news/more-bald-eagles-have-died-mysteriously/">More Bald Eagles Have Died Mysteriously –  [1096 Views]</a>
	</li>
	<li>
		<a class="gtc-link" href="/news/poll-should-the-lynx-be-rewilded-in-the-uk/">POLL: Should the lynx be rewilded in the UK? –  [1063 Views]</a>
	</li>
	<li>
		<a class="gtc-link" href="/news/poll-should-the-badger-cull-in-the-uk-be-stopped/">POLL: Should the badger cull in the UK be stopped? –  [1015 Views]</a>
	</li>
</ol>



<ol class="gtc-list">
	<li>
		<a class="gtc-link" href="/news/poll-should-the-annual-canadian-seal-hunt-be-banned/">POLL: Should the annual Canadian seal hunt be banned? [8081 Views]</a>
	</li>
	<li>
		<a class="gtc-link" href="/news/wildlife-photo-adventure-in-costa-rica/">Wildlife Photo Adventure in Costa Rica! [6113 Views]</a>
	</li>
	<li>
		<a class="gtc-link" href="/news/wild-tigers-of-india-in-battle/">Wild Tigers of India – in Battle! [4077 Views]</a>
	</li>
	<li>
		<a class="gtc-link" href="/news/poll-is-it-time-to-close-our-zoos/">POLL: Is it time to close our zoos? [3270 Views]</a>
	</li>
	<li>
		<a class="gtc-link" href="/news/poll-should-orcas-and-dolphins-be-kept-in-captivity/">POLL: Should orcas and dolphins be kept in captivity? [1971 Views]</a>
	</li>
	<li>
		<a class="gtc-link" href="/news/animals-rule-chernobyl-30-years-after-nuclear-disaster/">Animals Rule Chernobyl 30 Years After Nuclear Disaster –  [1283 Views]</a>
	</li>
	<li>
		<a class="gtc-link" href="/news/master-of-the-sky-owl-versus-wolf/">Master of the Sky: Owl versus Wolf –  [1227 Views]</a>
	</li>
	<li>
		<a class="gtc-link" href="/news/more-bald-eagles-have-died-mysteriously/">More Bald Eagles Have Died Mysteriously –  [1096 Views]</a>
	</li>
	<li>
		<a class="gtc-link" href="/news/poll-should-the-lynx-be-rewilded-in-the-uk/">POLL: Should the lynx be rewilded in the UK? –  [1063 Views]</a>
	</li>
	<li>
		<a class="gtc-link" href="/news/poll-should-the-badger-cull-in-the-uk-be-stopped/">POLL: Should the badger cull in the UK be stopped? –  [1015 Views]</a>
	</li>
</ol>


Create a new paste based on this one


Comments: