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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T10:24:47+00:00 2026-05-25T10:24:47+00:00

I would like to extract file names and their corresponding MD5 sum from a

  • 0

I would like to extract file names and their corresponding MD5 sum from a check sum file in a format such as this-

MD5 (FreeBSD-8.2-RELEASE-amd64-bootonly.iso) = 2587cb3d466ed19a7dc77624540b0f72

I would prefer to do this locally within the program, which rules out awk and the like.

  • 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-25T10:24:48+00:00Added an answer on May 25, 2026 at 10:24 am

    You can read lines easily enough using fgets(). Don’t even think of using gets().

    If you’re reasonably confident you won’t be dealing with filenames containing spaces or close parentheses, you can use sscanf() to extract the bits and pieces:

    char hash_type[16];
    char file_name[1024];
    char hash_value[128];
    
    if (sscanf(line, "%15s (%1023s) = %127s", hash_type, file_name, hash_value) == 3)
        ...good to go...
    else
        ...something went wrong...
    

    Note the sizes specified in the sscanf() string compared to the variable definitions; there isn’t an easy way to generalize that other than by using snprintf() to create the format string:

    char format[32];
    snprintf(format, sizeof(format), "%%1%zus )%%%zus) = %%%zus",
             sizeof(hash_type)-1, sizeof(file_name)-1, sizeof(hash_value)-1);
    

    Your alternative is some routine forward parsing to locate the hash type and the open parenthesis before the start of the file name, and some trickier backwards parsing, skipping over the hash value and finding the equals and the last close parenthesis, and then collecting the various parts.

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

Sidebar

Related Questions

I would like to extract pdf field names from a locked pdf file. When
I would like to extract items from this sample html, more specificly, i would
I would like to extract the date a jpg file was created. Java has
I have a full MS SQL Backup file that I would like to extract
I would like to extract from a general HTML page, all the text (displayed
I would like to extract the GPS EXIF tag from pictures using php. I'm
Hello! I would like to extract all citations from a text. Additionally, the name
I have a text file that has a list of directory names like this:
I would like to extract portion of a text using a regular expression. So
Using Php I would like to extract the current Url of a page including

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.