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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T22:28:07+00:00 2026-05-30T22:28:07+00:00

I can chain multiple sed substitutions and a awk operation to achieve this, but

  • 0

I can chain multiple sed substitutions and a awk operation to achieve this, but is there a single sed substitution that can do it?

Also is there any other tool that is more suitable for this parsing task?

  • 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-30T22:28:09+00:00Added an answer on May 30, 2026 at 10:28 pm

    You could try:

    sed -r 's!rec:id=(.*?)&name=(.*?)&age=(.*?)!\1 \2 \3!' input_file
    

    If you don’t know the rec:id etc in advance but you know there’s three, you could try:

    sed -r 's![^=]+=(.*?)&[^=]+=(.*?)&[^=]+=(.*?)!\1 \2 \3!' input_file
    

    If you don’t know how many &name=value pairs you’re after in advance but want to output all the values, you could try something like:

    grep -P -o '(?<==)([^&]*)(?=&|$)' | xargs
    

    where the -P means ‘perl regex’, the regex says “find the string followed by an & (or end of string) and preceded by and equals sign”, the -o means to print just the matches (ie the 1, zz, and 21) each on their own line, and the | xargs moves these from their own line to one line and space separated (ie 1\nzz\n21 to 1 zz 21).

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

Sidebar

Related Questions

Is it possible to chain multiple proxies in a single request using cURL? For
Possible Duplicate: How can I chain implicits in Scala? Can Scala apply multiple implicit
Yes, there are many topics about that, but I still didn't get it. I
I'm using the jQuery UI Autocomplete. It's great, but there's a problem with multiple
I want to chain multiple Task s, so that when one ends the next
In bash, is there a way to chain multiple commands, all taking the same
How can I get access to the items within this so that I can
We have a Windows application that can use multiple PCI adapters. These adapters all
In an RPG program (One of IBM's languages on the AS/400) I can chain
How can i create a chain of viewcontrollers and push them into navigation item

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.