Also note:

"^" matches the beginning of the string, so "^\/"
will only match a "/" at the beginning of the
string (not the first occurence of "/")

> -----Original Message-----
> From: Philip Hallstrom [mailto:[EMAIL PROTECTED]]
> Subject: [PHP] Re: preg_replace("/^\//".. doesnt work?
> 
>        $a = "/test/";
>        $a = preg_replace("/^\//", "", $a);
>        echo $a;
> 
> On Wed, 20 Feb 2002, John Ericson wrote:
> >
> > I want preg_replace to replace the first '/' in $a with '' so that the
> > echo function echoes "test/", but instead it echoes "/test/" as if
> > preg_replace didnt worked? What am I doing wrong?
> >



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to