wa2nlinux has asked for the wisdom of the Perl Monks concerning the following question:
Data file contain two colomn "key" and "values" separated by ":" and the source.txt contain\tl:਒ \tr:ਓ \ca:ਕ \ra:ਖ \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\tl\ca\ra\tr\ka ...
਒ਕਖਓਗ
The code above work if only if the source.txt contain keys separated with space,#!/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);
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\ca\ra\ka\tl
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Compare two file text input, compare it, replace and write new file
by kcott (Archbishop) on Feb 14, 2012 at 05:23 UTC | |
|
Re: Compare two file text input, compare it, replace and write new file
by repellent (Priest) on Feb 14, 2012 at 06:29 UTC | |
by wa2nlinux (Novice) on Feb 14, 2012 at 23:30 UTC | |
|
Re: Compare two file text input, compare it, replace and write new file
by jwkrahn (Abbot) on Feb 14, 2012 at 07:28 UTC | |
by wa2nlinux (Novice) on Feb 15, 2012 at 01:55 UTC | |
by wa2nlinux (Novice) on Feb 15, 2012 at 13:12 UTC |