ChaoZ InferNo wrote:

> @text # contains values of a phone directory
> $text[0] contains john=012345678
> 
> $phone1 = ?
> 
> let say i wanted to grab just the values'012345678'.


if the format of $text[0] is always name=number you can use split 
instead of a regex.

perldoc -f split


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to