con un pò di javascript. puoi creare una funzione del tipo

codice:
<head>
<script>
function checkHTTP(str) {
   return str.match(/http:\/\//gi);
}

if (checkHTTP("questa stringa contiene http:// ??")) {
  alert('ho trovato http://');
}
else {
  alert('non ho trovato http://');
}
</script>
</head>

Ciao