Try putting a "?" after your quantifier for "non-greedy" matching.

Something like: $the_array=split("<A (.*?)</A>", $html,-1);

Matt.



----- Original Message ----- 
From: "brendan" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, October 29, 2001 7:55 PM
Subject: [PHP] @#$@# Reg Expressions


> love em.. right now I hate em..
> 
> can someone inform me why the below doesnt work?
> it is intended to strip out all the links in a page and return an array
> .. insanity is just starting to set in..
> 
> cheers
> 
> $html =GETSITE($url);
> // and put in a new line break behind every anchor tag
> $the_array=spliti("<A (.*)</A>", $html,-1);
> echo $the_array ;
> foreach($the_array AS $k) echo $k."<HR>";
> }
> 
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
> 
> 
> 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to