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

  • SEARCH
  • Home
  • 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 6154333
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T20:14:45+00:00 2026-05-23T20:14:45+00:00

I have a tab-delimited text file. I have split this into columns. Each of

  • 0

I have a tab-delimited text file. I have split this into columns. Each of the first 2 columns contains an ID number.

I want to keep all lines with ID number starting with P or Q, and remove any other lines where column 1 or 2 has any other ID or is blank.

eg. so columns to be kept will be like this: P12345 or Q12345. Columns to get rid of will be GAG123, CH123 etc. or just blank.

I can’t work out how to do this. I have tried splitting lines into arrays and grep /^[PQ]/elements [0] and [1], and various other things, but I must be doing something wrong.

I’ve tried the follwoing code below from TLP, but it won’t work, I know I must be doing something fundamentally wrong:

#!/usr/bin/perl  

use warnings;
use strict;

open(FILE,"<myfile.txt"); 
my @LINES = <FILE>; 
open(my $outfile, '>', 'changedtxt');
my @wanted;

while (<FILE>) {
    my @fields = split('\t', $_);
    if ( $fields[0] =~ /^[PQ]/ and $fields[1] =~ /^[PQ]/ ) {
        push @wanted, $_;  
        print {$outfile} $_;    
    }
}
exit:
  • 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-23T20:14:47+00:00Added an answer on May 23, 2026 at 8:14 pm
    use strict;
    use warnings;
    
    my @wanted;
    while (<$fh>) {
        my @fields = split /\t/, $_;
        if ( $fields[0] =~ /^[PQ]/ or $fields[1] =~ /^[PQ]/ ) {
            push @wanted, $_;
        }
    }
    

    If you want both IDs to begin with P or Q, exchange or for and.

    If you simply want to move the wanted lines to another file, simply do:

    perl -wnae 'print if (($F[0] =~ /^[PQ]/) or ($F[1] =~ /^[PQ]/))' input.txt > output.txt
    

    Or as a script, use with script.pl input.txt > output.txt:

    use warnings;
    use strict;
    
    while (<>) {
        my @fields = split(/\t/, $_);
        print if ( $fields[0] =~ /^[PQ]/ and $fields[1] =~ /^[PQ]/ );
    
    } 
    

    Note that you can’t use '\t' as a split pattern.

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

Sidebar

Related Questions

I have a tab-delimited text file that I am parsing. Its first column contains
Let's say I have a tab-delimited text file that contains data arranged in columns
I have a text file with tab delimited data spread across 16 columns. I
I have a 2GB big text file, it has 5 columns delimited by tab.
I have a text file that is tab-delimited. How can I separate this string
I have a tab delimited text file with the first row being label headings
I have a tab-delimited text file with 8 columns: Erythropoietin Receptor Integrin Beta 4
I have a tab delimited file where each record has a timestamp field in
I have a tab delimeted file that I want to convert into a mysql
I have a text file that is tab delimited and looks like: 1_0 NP_045689

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.