strtok函數
創新互聯公司專注為客戶提供全方位的互聯網綜合服務,包含不限于成都網站制作、網站設計、外貿網站建設、潞城網絡推廣、微信小程序定制開發、潞城網絡營銷、潞城企業策劃、潞城品牌公關、搜索引擎seo、人物專訪、企業宣傳片、企業代運營等,從售前售中售后,我們都將竭誠為您服務,您的肯定,是我們最大的嘉獎;創新互聯公司為所有大學生創業者提供潞城建站搭建服務,24小時服務熱線:18980820575,官方網址:vcdvsql.cn
網頁鏈接
char str[] ="i love c love c";
const char * split = " ";
char * p;
p = strtok (str,split);
while(p!=NULL) {
printf ("%s\n",p);
p = strtok(NULL,split);
}
這么循環
說下我的邏輯,不一定最優
先弄個結構體struct里面有一個char*和一個int
再建個struct的數組
在每次循環對比之前獲得的struct數組中是否含有相同的字符串
有就計數器+1
沒有就在數組中為null的地方加上一個成員為這個字符串和計數為1的struct
循環結束時遍歷struct數組
好久沒寫C了,怕給你的代碼有bug,就寫思路把
可以使用strtok函數做分割單詞。
#includestring.h
voidmain()
{
chars[]="192.168.0.26";
char*delim=".";
char*p;
printf("%s",strtok(s,delim));
while((p=strtok(NULL,delim)))
printf("%s",p);
printf("\n");
}
擴展資料
在C++中strtok的使用
#includeiostream
#includecstring
usingnamespacestd;
intmain()
{
charsentence[]="Thisisasentencewith7tokens";
cout"Thestringtobetokenizedis:\n"sentence"\n\nThetokensare:\n\n";
char*tokenPtr=strtok(sentence,"");
while(tokenPtr!=NULL){
couttokenPtrendl;
tokenPtr=strtok(NULL,"");
}
//cout"Afterstrtok,sentence="tokenPtrendl;
return0;
}
程序源碼如下:
#includestdio.h
#includestring.h
int?main(void)
{
char str[1000];//定義一個字符串數組
char strnew[1000];//定義一個備用字符串數組
char m[]?=?"?";//定義空格變量
printf("請輸入一串字符:");//文字提示輸入字符串
gets(str);//輸入字符串
char?*p?=?strtok(str,m);//取str與m的指針
printf("%s\n",p);? //輸出
p?=?strtok(NULL,m);
while(p)? //遍歷輸出
{ ? ?
printf("%s\n",p); //輸出字符串
p?=?strtok(NULL,m);? //指向下一個
}
}
程序輸出結果:
擴展資料:
C語言:輸入一個字符串放入數組里,刪除其中的空格
#include stdio.h
#includestring.h
#define N 100
void main() ? ? ? ? ? ? ? ? ??
{
int i=0,j;
char c,str[N];
printf("輸入字符串str:\n");
while((c=getchar())!='\n')
{
str[i]=c;//輸入字符串
i++;
}
str[i]='\0';
for(i=0;str[i]!='\0';i++)
{
if(str[i]==' ')
{
for(j=i+1;str[j]!='\0';j++)
{
str[j-1]=str[j]; ? ?
}
str[j]='\0';
}
else continue;
}
str[i-2]='\0';
printf("去掉空格后的字符串為:\n");
for(i=0;str[i]!='\0';i++)
printf("%c",str[i]);
printf("\n");
}
分享題目:c語言按空格拆分函數 c語言用空格隔開輸出一串數字
當前鏈接:http://vcdvsql.cn/article32/dosdhsc.html
成都網站建設公司_創新互聯,為您提供Google、網站策劃、用戶體驗、微信公眾號、軟件開發、ChatGPT
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯