Daniel Mueller wrote:
> 
> hi group!
> 
> i'm currently trying to match all variables in a file, the regex i use looks
> like this :
> 
> m/([\$|\@|\%]\w+)/g

You seem to have mixed two ways to do it

m/([EMAIL PROTECTED])/g;  or
m/((?:\$|\@|%)\w+)/g;   

/Stefan

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

Reply via email to