Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I want to use sscanf to get the information from the line content up to the char before :. the first char of the line

I want to use sscanf to get the information from the line content up to the char before ":". the first char of the line is "\t". I used the below one but captured the ":" too. Can advise how I can capture the content before ":"

sscanf(line, "%s%*[\t]%*[^:]", dict[i].word[j].type);

If the content of line array is

TYPE: ABCDE

then by using the above sscanf, it will capture "TYPE:" into the dict[i].word[j].type. But i want to just capture "TYPE" instead of "TYPE:"

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Programming questions