Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6238447
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T11:12:56+00:00 2026-05-24T11:12:56+00:00

use warnings; $reff_filepath=/home/sharma/Documents/ref.txt; open (CONFIG,<,$reff_filepath)or die Unable to open $reff_filepath: $!; while(<CONFIG>) { chomp;

  • 0
use warnings;

$reff_filepath="/home/sharma/Documents/ref.txt";
open (CONFIG,"<","$reff_filepath")or die "Unable to open $reff_filepath: $!";

while(<CONFIG>) {
    chomp;
    @cols = (split(/ /))[2];
    push(@array, @cols);
    print "@array\n";
}

close CONFIG;

The output I got is:

On
On referendum
On referendum Bill
On referendum Bill overwhelming
On referendum Bill overwhelming claimed
On referendum Bill overwhelming claimed Bill
On referendum Bill overwhelming claimed Bill governmen

but my expected output is

On
referendum
Bill
overwhelming
claimed
Bill
governmen

Explaination: I’m trying to print the third word of each sentences using Perl. Above I have written my Perl script. I got that output what I expected in above. But I pushed that output into the array like this push(@array, @cols) then i got the first output what I mentioned above. Please anyone will give suggestion or to rewrite the Perl script to display the output I expect.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T11:12:57+00:00Added an answer on May 24, 2026 at 11:12 am

    How about defining the input separator to “.”?

    $/ = .;
    
    while(<>) {
      $i = 0;
      @words = split(/\s+/);
      while ($i <= $#words) {
         push (@array, @words[$i]);
         $i+=3;
      }
    }
    print "@array\n";
    

    or something similar (I didn’t attempt to run this script). You don’t attempt to get every third word of each sentence but rather every third word in the entire document.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

#!usr/bin/perl use strict; use warnings; my $file_name = rem.txt; open(FILE, $file_name); while (<FILE>) {
#!/usr/bin/perl use strict; use warnings; open(my $vmstat, /usr/bin/vmstat 1 2>&1 |); open(my $foo, >,
I'm puzzled with this test script: #!perl use strict; use warnings; use encoding 'utf8';
In Delphi, you can use compiler directives to disable specific warnings, such as {$WARN
use warnings; use Test::More; use File::Find::Rule; use Test::File::Find::Rule; my $rule = File::Find::Rule->file->name('*.pl')->not_grep(qr/^\s*use\s+strict;/m, sub {
!/usr/bin/env perl use warnings; use strict; my $text = 'hello ' x 30; printf
#!/usr/bin/env perl use warnings; use strict; use 5.012; use IPC::System::Simple qw(system); system( 'xterm', '-geometry',
#!/usr/bin/env perl use warnings; use strict; use 5.012; use XML::LibXML::Reader; my $reader = XML::LibXML::Reader->new(
Consider this snippet: use strict; use warnings; my $data = 1; my $packed =
#!/usr/bin/perl use strict; use warnings; my @array = qw[a b c]; foreach my($a,$b,$c) (@array)

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.