"Dr.Ruud" schreef: > If an ending "_" is no problem, you can make it > > /\b[[:alpha:]]\w*/
And you can write [[:alpha:]] as [^\W\d_]. /\b[^\W\d_]\w*/ (all assuming "use encode 'latin1'") -- Affijn, Ruud "Gewoon is een tijger." -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>