In message <[EMAIL PROTECTED]>, Timo Neumann writes:
>What I have now is this:
>^[\d\wäöüÄÖÜ\s]*$
>
>Obviously that does not allow punctuation.
>
>Any help?

From the perlre man page: 

       graph
           Any alphanumeric or punctuation (special) character.

       print
           Any alphanumeric or punctuation (special) character or the space
           character.

       punct
           Any punctuation (special) character.

That is, as in [:graph:], [:print:], and [:punct:].  For example,
[\s\w[:punct:]] should be equivalent to [\s[:graph:]] which should
be equivalent to [:print:].  We need to update the documentation
for the supported syntax because I see POSIX and POSIX-like character
classes are not listed at
http://jakarta.apache.org/oro/api/org/apache/oro/text/regex/package-summary.html

daniel



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

Reply via email to