我从文本文件中读取了一行,其中行尾有数字(格式:“some text.001”),我想获取 0 或 0 之后的数字。因此,如果是 001,则为 1,如果是 010,则为 10。我现在得到的:
fgets(strLine, 100, m_FileStream);
// Here I need to cut the numbers into myNum
int num = atoi(&myNum);
我尝试使用 strrchr 来获取“。”的位置,但不知道接下来会发生什么。也许我需要strtok,但我不知道如何使用它。