Justtechjobs.com Find a programming school near you






Online Campus Both


php-general | 2001032

[PHP] pattern match help From: Costas (costas <email protected>)
Date: 03/28/01

$str = "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)";

I need to fetch the 5th charcter after ".....compatible; M" in $str (ie
'5').

- The following gets me the fifth character along (ie 'l')
$variable = substr ($str, 5, 1);

How do i tell the substr to start counting from ".....compatible; M(start
here)"

THanks

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: php-general-unsubscribe <email protected>
For additional commands, e-mail: php-general-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>