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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T09:52:39+00:00 2026-05-23T09:52:39+00:00

I have a need of scraping information from text files that comes in format

  • 0

I have a need of scraping information from text files that comes in format like so:
I know how to get the delimiter from between the quotes. using that delimiter i have to go through each section, and set the name in one variable and information between delimiter in another variable. Need to continue doing until it reaches end of file.

test.txt
-------------------------
delimiter: "--@--"

--@-- 

name:"section1"

This is section 1 with some information

--@--

name:"section2"

This is section 2 with some information

--@--

name:"section3"

this is section 3 with some information

--@--

End of file

i appreciate all the help i get. Thanks!

  • 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-23T09:52:40+00:00Added an answer on May 23, 2026 at 9:52 am

    considering your text file content is in $string and delimiter is $delim, a preg_match_all and a array_combine will help you with this

    $delim = preg_quote($delim,'/');
    preg_match_all('/(?<='.$delim.')\s*name:"([^"]+)"\s*(.*?)\s*(?='.$delim.')/',$string,$m);
    $items = array_combine($m[1],$m[2]);
    

    it should return somthing like this:

    Array
    (
        [section1] => This is section 1 with some information
        [section2] => This is section 2 with some information
        [section3] => this is section 3 with some information
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been scraping sites and retrieving image information regarding them. However, I need
Ok so I have a text file that will change regularly that I need
I have need to return multiple results from a subquery and have been unable
I have need for a function pointer that takes two arguments and returns a
I have a need for two slightly different classes, that have the same members,
I have a need to write a GTK application in C that does some
My application needs some web scraping functionality. I have URL object that downloads all
I need to store some data that looks a little like this: xyz 123
I have written a scraper that does html scraping and then use API to
For a bit of scope, I have a scraping app that I am running

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.