I'm trying to see if when I do
fscanf(inputSTREAM, "$%s$", out)
I can also return the $ signs - is there a way?
|
|
|
I don't think there's a way to retrieve the string with the dollar signs and the non-blank string between them using the In practice, you could probably get the first dollar sign into the string using:
You can't pull the same stunt for the latter dollar sign, even if you know the exact length of the string. The trouble is that you'd need to overwrite the null at the end of the string with the second dollar sign, and you'd want a NUL This isn't guaranteed behaviour; the first conversion would write a NUL over
|
||||
|
|
|
Note that in
Note that 62 in |
|||
|
|
|
You could read the line as a string, then use sscanf to get the value you're using fscanf for. Then you'll have the original string and the value from sscanf. |
|||
|
|