Gossamer Forum
Home : Products : Gossamer Links : Discussions :

regular expressions

Quote Reply
regular expressions
Hello,

I was playing with regular expressions in user/Page.pm to display detailed pages for my users, but I need an expressions that recognize all characters like 0-9,a-z,A-Z, ., @ _,-,

at the moment i have this exprtession
([\w\/\- @]+)

but this expressions can't recognize email addresses.
Who can give me suggestions?

thanks.
Quote Reply
Re: [ridesworld] regular expressions In reply to
If you want it to be really slack just do:

(.+)