Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: How can you check if a word in a array occur in another array?

by Anonymous Monk
on Nov 29, 2012 at 09:06 UTC ( [id://1006205]=note: print w/replies, xml ) Need Help??


in reply to How can you check if a word in a array occur in another array?

This is FAQ, perlfaq4
  • Comment on Re: How can you check if a word in a array occur in another array?

Replies are listed 'Best First'.
Re^2: How can you check if a word in a array occur in another array?
by ashish20092009 (Novice) on Nov 29, 2012 at 11:54 UTC
    your code is write just remove the last code part::::::what are u doing here in last part. take a look : #!/usr/bin/perl -w use strict; use warnings; use utf8; open (INPUT, "<:utf8", "short.txt") or die "can't open"; open (INPUT2, "<:utf8", "woordelysEng.txt") or die "can't open"; open (OUTPUT, ">output.txt") or die "can't open"; my @words; my @EN; while (<INPUT>) { my $word = $_; chomp $word; @words = split(/ /, $word); } while (<INPUT2>) { my $word = $_; chomp $word; @EN = split(/ /, $word); } for(my $z = 0; $z <= $#EN; $z++) { for(my $y = 0; $y <= $#words; $y++) { if($EN$z eq $words$y) { print OUTPUT "$EN$z\n"; } } }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1006205]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (2)
As of 2024-04-20 03:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found