Hi,

     something like this:

     $QUERY_STRING = "siteUserList.cgi?group=site177&2345";
     if 
(preg_match("#siteUserList.cgi\?group=site177(&?[\d]*)#",$QUERY_STRING,$array11))
     {
          echo "found: $array11[0]<br />$array11[1]";
     }

     Mirza [EMAIL PROTECTED]


01.07.2002 19:37

> Hi people,

> I got this line that is relly giving me a pain..:

> if (preg_match("@siteUserList.cgi\?group=site177(&?)@", 
> $QUERY_STRING))  

> As you can see it just matches the query string when it looks like 
> this: siteUserList.cgi?group=site177& (with or without a "&")

> The thing is I need it to match also if after the "&" there is a number 
> (that will have more than 1 digit)

> Ive tried many diffrent thing with \d+ but I can get it to work.. can 
> somebody give me some light? Thanks.        



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

Reply via email to