Contents of a Unicode (UTF-8) text file named DriedMangos.txt:
| dried mangos |
| mangues séchées |
| 芒果幹 |
| doraido mangōsu |
| ドライドマンゴス |
| ドライドマンゴス |
| ト"ライト"マンコ"ス |
Perl script to demonstrate matching Unicode grapheme clusters using the regular expression backslash sequence \X:
#!perl
use strict;
use warnings;
use autodie;
open my $input_fh, '<:encoding(UTF-8)', 'DriedMangos.txt';
open my $output_fh, '>:encoding(UTF-8)', 'Graphemes.txt';
while (my $line = <$input_fh>) {
chomp $line;
while ($line =~ m/(\X)/g) {
print $output_fh "[$1]";
}
print $output_fh "\n";
}
close $input_fh;
close $output_fh;
Contents of the output text file named Graphemes.txt:
| [d][r][i][e][d][ ][m][a][n][g][o][s] |
| [m][a][n][g][u][e][s][ ][s][é][c][h][é][e][s] |
| [芒][果][幹] |
| [d][o][r][a][i][d][o][ ][m][a][n][g][ō][s][u] |
| [ド][ラ][イ][ド][マ][ン][ゴ][ス] |
| [ド][ラ][イ][ド][マ][ン][ゴ][ス] |
| [ト]["][ラ][イ][ト]["][マ][ン][コ]["][ス] |
(See http://ameblo.jp/gucciman-ikkob/entry-10317490092.html for an explanation of the peculiar last line of the file named DriedMangos.txt.)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|