Hello all, I got problems in perl. I have 2 text file call it 1) data 2) source.txt The data file contain teks file like this :
\tl:&#xa12 \tr:&#xa13 \ca:&#xa15 \ra:&#xa16 \ka:&#xa17 ...
Data file contain two colomn "key" and "values" separated by ":" and the source.txt contain
\tl\ca\ra\tr\ka ...
source.txt file contain "key" such as in data file. I need a new file call it target.txt that contain "values" form data according to "keys" in source.txt
&#xa12&#xa15&#xa16&#xa13&#xa17
#!/usr/bin/perl use strict; use warnings; my $dfile = 'data'; my $sfile = 'source.txt'; my $tfile = 'target.txt'; open (DFILE,$dfile) or die "can not open"; open (SFILE,$sfile) or die "can not open"; open (TFILE,"> $tfile") or die "can not open"; my %words; while (<DFILE>) { chomp; my ($key, $val) = split /:/; $words{$key} .= exists $words{$key} ? "$val" : $val; }; while (my $s = <SFILE>) { chomp($s); my @words = split / /, $s; foreach my $val (@words) { } for my $i (0 .. $#words) { $words[$i] = $words{$words[$i]} if (exists($words{$words[$i]})) } print TFILE join(' ', @words),$/; print TFILE "<br>"; } close(SFILE); close(DFILE); close(TFILE);
The code above work if only if the source.txt contain keys separated with space,
\ca \ra \ka \tl
but fail to work if source.txt is
\ca\ra\ka\tl
I try to make hash from data but I confuse how to compare it and replace it, if source.txt contain "keys" without space

In reply to Compare two file text input, compare it, replace and write new file by wa2nlinux

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.