|
Posted by John Nichel on 03/04/05 22:42
Shaun wrote:
> Hi,
>
> Please could someone tell me how i can extract the information from a string
> that is after 'ID_' and before '_FN'
>
> Thanks for your help.
>
preg_match ( "/ID_(.*)_FN/", $string, $result )
The data will be in $result[1] if there is a match.
--
John C. Nichel
ÜberGeek
KegWorks.com
716.856.9675
john@kegworks.com
Navigation:
[Reply to this message]
|