Re: [PHP] Pattern Capture

2004-01-13 Thread Chris Boget
 Ok, I feel really lame for asking this, but I can I do this in PHP:
 $userid =~ /([\D]+)/;
 $baseName = $1;
 It seems like Pattern Capture is not the right term for the similar
 function in PHP. I'm not sure what to search for.

Look at the third argument for the preg_match() function.  I believe
some of the other regular expression functions have similar arguments
as well.

Chris

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



Re: [PHP] Pattern Capture

2004-01-13 Thread Jason Wong
On Tuesday 13 January 2004 23:27, Cameron B. Prince wrote:
 Ok, I feel really lame for asking this, but I can I do this in PHP:

 $userid =~ /([\D]+)/;
 $baseName = $1;

 It seems like Pattern Capture is not the right term for the similar
 function in PHP. I'm not sure what to search for.

manual  Regular Expression Functions (Perl-Compatible)  Pattern Syntax

Then use preg_match() or preg_match_all().

-- 
Jason Wong - Gremlins Associates - www.gremlins.biz
Open Source Software Systems Integrators
* Web Design  Hosting * Internet  Intranet Applications Development *
--
Search the list archives before you post
http://marc.theaimsgroup.com/?l=php-general
--
/*
What GOOD is a CARDBOARD suitcase ANYWAY?
*/

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