為什麼這篇strstr使用鄉民發文收入到精華區:因為在strstr使用這個討論話題中,有許多相關的文章在討論,這篇最有參考價值!作者momo81 (毛毛)看板C_and_CPP標題[問題] 有關strstr()時間Sun Sep...
開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
dev c
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
問題(Question):
如程式碼
想請問有甚麼原因會這樣
謝謝
餵入的資料(Input):
strstr("This is a",讀取的資料);
預期的正確結果(Expected Output):
搜尋的到
錯誤結果(Wrong Output):
搜不到
程式碼(Code):(請善用置底文網頁, 記得排版)
FILE *fPtr = fopen("A.txt","r");
char *b;
char txtvalue[10];
fgets(txtvalue, 10, fPtr);
b=strstr("This is a",txtvalue);
if(b!=0)
{
printf("%s",b);
}
fclose(fPtr);
system("PAUSE");
return 0;
A.txt裡面的內容
is
a
b
這樣子的話 找不到
但是只要把 strstr("This is a",txtvalue);的txtvalue寫死成"is"
就找的到..
補充說明(Supplement):
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 202.5.249.97
※ 文章網址: http://www.ptt.cc/bbs/C_and_CPP/M.1411842142.A.8B4.html
也用strlen確定過字串長度只有2
但是還是不行QQ
不過還是謝謝
A.txt沒有 就如上面打的那樣
我也是那樣打耶 只是分開
strlen 然後 字串長度的位置-1 = '\0'
那我在試試看好了><
感謝各位
※ 編輯: momo81 (202.5.249.97), 09/28/2014 11:36:44