Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
allow LTMish characters in character classes
  • Loading branch information
TimToady committed Feb 9, 2011
1 parent 8e01231 commit 7e20743
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion S05-regex.pod
Expand Up @@ -18,7 +18,7 @@ Synopsis 5: Regexes and Rules
Created: 24 Jun 2002

Last Modified: 9 Feb 2011
Version: 143
Version: 144

This document summarizes Apocalypse 5, which is about the new regex
syntax. We now try to call them I<regex> rather than "regular
Expand Down Expand Up @@ -1621,6 +1621,14 @@ semantics.

=item *

Extra long characters may be entered by quoting them and including them
via intersection. Any quoted characters will be treated as "longest tokens"
when appropriate. Here 'll' would be recognized in preference to 'l':

/ <[ a..z ] | 'ñ' | 'ch' | 'll' | 'rr'>

=item *

The special assertion C<< <.> >> matches any logical grapheme
(including a Unicode combining character sequences):

Expand Down

0 comments on commit 7e20743

Please sign in to comment.