Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^4: What bytes are in character class \p{Pe} ClosePunctuation?

by almut (Canon)
on Mar 16, 2010 at 08:29 UTC ( [id://828845]=note: print w/replies, xml ) Need Help??


in reply to Re^3: What bytes are in character class \p{Pe} ClosePunctuation?
in thread What bytes are in character class \p{Pe} ClosePunctuation?

I would guess it's a range

...which is also confirmed by this piece of code from mktables (which creates those tables):

sub Table::Write { ... for my $set (@$Table) { my $start = $set->[RANGE_START]; my $end = $set->[RANGE_END]; my $name = $set->[RANGE_NAME]; if ($start == $end) { push @OUT, sprintf "%04X\t\t%s\n", $start, $name; } else { push @OUT, sprintf "%04X\t%04X\t%s\n", $start, $end, $name +; } }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://828845]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (8)
As of 2024-03-28 12:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found