有人可以介绍如何按此顺序阅读文本文件:
Line of text here
number1(startposition)
number2(endposition)
Line of text here
number1(startposition)
number2(endposition)
Line of text here
number1(startposition)
number2(endposition)
然后使用number1作为startposition找到行的子字符串,使用number2作为endposition,并将子字符串复制到新字符串中。
答案 0 :(得分:2)
好的,这是一个介绍:
fgets
中使用str
读取一行
strtol
length = end - start + 1
memcpy
复制end - start
str + start
个字节
当你进行fgets
电话时,请准备好让它失败。