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 8315887
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T21:13:57+00:00 2026-06-08T21:13:57+00:00

I wanted to parse a file with names and comments on top of some

  • 0

I wanted to parse a file with names and comments on top of some of the name blocks. If I had a file like:

Art
Boat
Road
Tree
Street

# Blah
Star
Car
Sun

Sock

# Comm1
# Comm2
Stop
Stick
# Comm
Stock
Dock

And I wanted to parse this file in a way so as to extract all names starting with ‘S’ with their corresponding comments. Corresponding comments are the immediately preceding comment block (one or more lines of comments) till a white space is encountered preceding it. Also one comment block applies to all entries following it till a white space or another comment block is encountered. So the output of the above input should be something like:

**Name      Comments**

Street
Star        # Blah
Sun         # Blah
Sock
Stop        # Comm1 # Comm2
Stick       # Comm1 # Comm2
Stock       # Comm

Can anyone suggest a good way to go about doing this (preferably using shell)? Would really appreciate it. Thanks!

PS: I apologize if I am not clear in my description, still new at this.

  • 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-06-08T21:13:58+00:00Added an answer on June 8, 2026 at 9:13 pm

    Assuming your blank lines contain no whitespace:

    sed -n '/^#/H; /^S/{G; y/\n/ /; p}; /^$/h' input
    

    The first command (/^#/H) appends the current line (a comment) to the hold space.
    The next command appends the hold space (containing all the accumulated comments) to the current buffer, replaces all newlines with a single space, and then prints the line. The final command clears the hold space whenever a blank line is encountered.

    EDIT (thanks blahdiblah)

    The above does not reset the accumulator correctly when a new comment block is detected without a preceding blank line. This is ugly, but accounts for that:

    sed -n '/^#/{h; bk}; :j /^S/{G; y/\n/ /; p}; /^$/h; d; :k n; /^#/{ H; bk}; bj;' input
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wanted to parse a text file that contains unstructured text. I need to
I am using scala 2.7.7, and wanted to parse CSV file and store the
Today I needed to parse some data out from an xlsx file (Office open
I've just started using DOM and wanted to parse an Android XML layout file
I wanted to parse the xml feed and display as links in my Blackberry
I wanted to make a simple parser, for a pseudo code like language(kept rigid),
Wanted to know if someone had a suggestion on code or maybe there's a
Okay, so I'm using perl to read in a file that contains some general
I had wanted to put a solution onto a thumb drive or dvd to
I'm following a tutorial and it's working fine but if I wanted to parse

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.