PHP קוד:
$text = file_get_contents("http://www.digitalcybersoft.com/ProxyList/fresh-proxy-list.shtml");
$text = substr(
$text,
strpos($text,"<pre>"),
strpos($text,"</pre>") - strpos($text,"<pre>")
);
preg_match_all('/[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}/', $text, $proxies);
print_r($proxies);
תנסה את זה.