Following up on the remark to look up unicode support in Perl, you'll need to know the name of the character encoding used in your data. IIRC, "Traditional Chinese" would refer to some sort of "Big5" encoding, but there might be more than one sort of "Big5", and the difference might matter. (My Perl 5.8.1 on macosx/panther supports "big5-eten" and and "big5-hkscs"; there might also be a "CP???" version.)

Whatever character set is appropriate, it might be easiest to save a plain text file containing just the "CHT string" (or both the preceding and the following "CHT string", if these are not identical), in the same character set as the original data. Then something like this should do:

use strict; use Encode; open( I, "string.txt" ); my $string = <I>; chomp $string; # or: my ($pre,$fol) = split ' ',$string; # if file has previous and following strings close I; my $pattern = decode( 'big5-eten', $string ); # you might need a different character-set name (if so, fix it in thre +e places) # also, if you are using $pre and $fol, you need to decode each one se +parately # (e.g. into $pat1 and $pat2) my $newversion = "2.0"; # or whatever... open( I, "<:encoding(big5-eten)", "big_data.txt" ); binmode( STDOUT, ":encoding(big5-eten" ); while ( <I> ) { s/($pattern).*?($pattern)/$1$newversion$2/; # or: s/($pat1).*?($pat2)/$1$newversion$2/; # maybe you also need the "g" modifier too? print; }
(not tested, of course, but nothing much to it, really)

In reply to Re: Regex for Multibyte Characters by graff
in thread Regex for Multibyte Characters by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • 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, details, 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, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.