这有点复杂,但基本上我正在制作一个程序,我的一个功能有点奇怪。该函数首次输入一个字符数组
new_sensor_node SN42 42 3.57 5.0 7。
现在该函数只打印出每个“令牌”(每个字符用空格分隔)。然后打印一个空格,然后打印令牌中的字符数。但由于某种原因,最后一个令牌总是打印得很奇怪,并计算了1个字符。
这是功能:
int parseCommandLine(char cline[], char *tklist[]){
int i;
int length;
int count = 0; //counts number of tokens
int toklength = 0; //counts the length of each token
length = strlen(cline);
for (i=0; i < length; i++) { //go to first character of each token
if (((cline[i] != ' ' && cline[i-1]==' ') || i == 0)&& cline[i]!= '"') {
while ((cline[i]!=' ')&& (cline[i] != '\0')){
toklength++;
cout << cline[i];
i++;
}
cout << " " << toklength << "\n\n";
cout << "\n";
toklength = 0;
count ++;
}
if (cline[i] == '"') {
do {
i++;
} while (cline[i]!='"');
count++;
}
}
//cout << count << "\n";
return 0;
这是输出(对于第一个数组):
new_sensor_node 15
SN42 4
42 2
3.57 4
5.0 3
7.
3
有关可能导致此问题的任何想法?我怀疑它可能与我如何处理空字符
有关答案 0 :(得分:3)
输入字符串很可能实际上包含最后的换行符。根据您读取输入的方式,它可能在输入中,也可能不在输入中。例如,fgets
函数读取换行符并将其保留在缓冲区中。
特别是因为你实际上并没有对输入字符串进行任何实际的标记化或修改,所以你只是逐个字符地打印,这是一种非常可能的情况。