Hi
As part of a class I'm building I need to parse a file where following 
line occurrs:
users: username "username with spaces" anotherusername

I need to parse that into a structure like
$users = array(
        'username',
        'username with spaces',
        'anotherusername'
);

The issue is the string after the : (the other part is relativly easy as 
you could think)
Is there anyone having a parsing algorithm for that just out of the box? 
It would save me reinventing the wheel ;-)

TIA
stefan rusterholz


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

Reply via email to