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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T05:40:39+00:00 2026-06-14T05:40:39+00:00

This is the line i’m trying to split, from the start until the :

  • 0

This is the line i’m trying to split, from the start until the :, eat any whitespace and from there onwards:

file1: file2,file3,file4

And my code is:

while(fscanf(fp,"%s: %s",map[i].name, map[i].filesNeeded) == 1)
{
   printf("%s %s\n",map[i].name, map[i].filesNeeded);
   i++;
}

The second parameter is never saved. the result is:

file1: 
file2,file3,file4

instead of:

file1 file2,file3,file4
  • 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-14T05:40:41+00:00Added an answer on June 14, 2026 at 5:40 am

    Firstly, fscanf will increment the return for each item matched, so it should be == 2.

    Also, you will want to use %[^:] instead of %s as the %s won’t know when to stop.

    int main(int argc, char** argv)
    {
      char test[] = "one: two,three";
    
      char part1[20];
      char part2[20];
    
      printf("%i\n", sscanf(test, "%[^:]: %s", part1, part2));
    
      printf("%s %s\n", part1, part2);
    }
    

    Output:

    2
    one two,three
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This line worked until I had whitespace in the second field: svn status |
This line: //div[@id=transactions]/p gives this output (from html content I'm trying to get): How
This line should just check the c1 string from test_data table and if there
This line of code is a snippet from my select statement. frdFreedays - DateDiff(dd,conReceiptToStock,GetDate())
Consider this line in the pygame loop: pygame.display.set_mode().fill((0, 200, 255)) From: http://openbookproject.net/thinkcs/python/english3e/pygame.html I. How
This line: $quey1=select * from clients WHERE USER == $current_user->user_login;; It returns an unknown
For this line of code: text = totaltext2.reject {|sentence| nilfacs.any?{|fac| sentence =~ /#{fac}/i}} I'm
This line of code: contract = Contract.get_by_id(contract_id) From this block: class MainHandler(webapp2.RequestHandler): def get(self):
this line of code is to create a thumb object, but there are warning
this is particularly at this line: filesys = os.listdir(settings.CAPTCHA_ROOT) it happens when trying to

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.