> $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
$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 ".compatibl
2 matches
Mail list logo