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:਒
\tr:ਓ
\ca:ਕ
\ra:ਖ
\ka:ਗ
...
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
਒ਕਖਓਗ
#!/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
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.