i have written a parser which searchs in a file for regexps. it all went fine but then i found out, that some of the data files are encoded in unicode. i tried several things from manuals and books but it just doesn't work. it seems that perl does not use the right encoding, it finds almost no regularexpression and the output is still with the NULs after every character. if i write the same lines in ASCII-File the keywords are found without any problem. i am using windows xp with active state perl 5.8. thanks vor your help.
#test.pl - testfile with the heart of the parser #open the file to search trough unless (open FILE, "<../perl/testproto/Protokoll.log") { die "Cannot open Keywordfile: $!\n"; } #search for the regexp in the file while (<FILE>) { chomp; if (/.*Cl(.*)/) { print $1; } else { print "Keine Treffer.\n"; } }
Part of the data-file: keywords to be found: Clinic, Surgon, Patient Code, ...
S: 07:02:36 ---------------------------------------------------------- +---------- S: 07:02:36 Clinic: Knie Klinik S: 07:02:36 Surgon: Prof X S: 07:02:36 Patient Code: Kiro S: 07:02:36 Size: 30 cm S: 07:02:36 Weight: 50 kg S: 07:02:36 Birthdate: Sa 1. Jan 2000 S: 07:02:36 Sex: male S: 07:02:36 Indication:

In reply to work with unicode data and regexps by kamel

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.