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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T15:20:00+00:00 2026-05-30T15:20:00+00:00

I need to create a search program in C language, that can parse the

  • 0

I need to create a search program in C language, that can parse the text file and find the keyword x=”value”. then I want to create a list of value items into array. Currently I am using fscanf approach, here is my code snippet.



    fscanf(fp, "%s", buf);
    if !strcmp(buf, "x")
    {
       fscanf(fp, "%s", buf);
        if ( ! strcmp(buf, "="))
         fscanf(fp, "%s", buf);
        else
        printf("\n Not a valid format");
    }

I don’t want to use fscanf, Is there any other approach for my requirement??

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-30T15:20:01+00:00Added an answer on May 30, 2026 at 3:20 pm

    There are other approaches (e.g., you could use Flex), but I think slightly better use of sscanf would make the most sense:

    char buffer[256];
    char value[128];
    
    fgets(buffer, sizeof(buffer), fp);
    
    if (1==sscanf(buffer, "x=%127s", value))
         // we read a value -- now use it however needed.
    

    Edit: The basic idea here is pretty simple. We start by reading a whole like with fgets. We then use sscanf to try to match x=<whatever> in that line. If we find it, we have the value we care about. If we didn’t find it, sscanf will return 0, since it returns the number of items it converted — and if it doesn’t match the x= we specified, it won’t convert anything, so sscanf will return 0, and we know that line didn’t match.

    Edit 2: Here’s a small demo program that reads data from a file, and prints out the values for lines that follow the form x=<whatever>, with spaces allowed before and after the x and the =:

    #include <stdio.h>
    
    int main() { 
    
        FILE *infile = fopen("Somefile.txt", "r");
    
        char buffer[256];
        char value[128];
    
        while (fgets(buffer, sizeof(buffer), infile))
            if (1 == sscanf(buffer, " x = %127s", value))
                printf("Value = %s\n", value);
        return 0;
    }
    

    I tested it with this as input:

    some junk
    #a comment
    a = 1 ; a couple other variables.
    b = 2
    x = 3
     x = 4
    x=5
    

    The result I got was:

    Value = 3
    Value = 4
    Value = 5
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to create a full-text search form for a database of emails /
We need to create a program in PHP/MySQL that will display all the 'people',
Hello all, I need to create a query for house search, that would match
I need to create multiple search fields that each search different content in WordPress.
I am using asp.net C# 2008, and I need to create a search textbox
I need to create a php search function for names and need to change
I need to create an XML schema that looks something like this: <xs:element name=wrapperElement>
I have to create a C# program that deals well with reading in huge
I need to create a sitemap for my website to submit to search engines
I need to create a menu tree using HTML. I had a search on

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.