#includestdio.h
創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供承留網(wǎng)站建設(shè)、承留做網(wǎng)站、承留網(wǎng)站設(shè)計、承留網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、承留企業(yè)網(wǎng)站模板建站服務(wù),10年承留做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。
#includestring.h
int?strdel?(char?*s);
int?main()
{
char?a[100];
int?n;
gets(a);
n=strdel?(a);
puts(a);
printf("%d",n);
return?0;
}
int?strdel?(char?*s)
{
int?i,j=0,k=0,n;
char?*p=s;
n=strlen(s);
for(i=0;in;i++)
{
if(*(p+i)=='?')
{
j++;
continue;
}
else?
{
*(s+k)=*(p+i);
k++;
}
}
*(s+k)='\0';
return?j;
}
①目標(biāo)
要刪除字符串中的所有空格,
就要篩選出空格字符。
要篩選,就要對首字符做標(biāo)記。
要所有空格,就要遍歷。
~
②命令行
#include stdio.h
#include stdlib.h
#include ctype.h
~
③定義函數(shù)
void fun(char *str)
{int i=0;
char *p;
/*標(biāo)記:p=str表示指針指向字符串首地址做標(biāo)記*/
for(p=str;*p!='\0';p++)
/*遍歷:不等于'\0'表示只要字符串不結(jié)束,就一直p++。*/
if(*p!=' ')str[i++]=*p;
/*刪除:如果字符串不等于空格,即有內(nèi)容就存入字符串。等于空格就不儲存,但是指針還是p++繼續(xù)后移,跳過儲存空格相當(dāng)于刪除。*/
}
void fun(char *str)
{int i=0;
char *p=str;
while(*p)
{if(*p!=' ')str[i++]=*p;
p++;}
/*除了for循環(huán)遍歷,也可while循環(huán)遍歷。注意 p++在if語句后,不然會漏掉第一個字符。*/
str[i]='\0';
/*循環(huán)完畢要主動添加'\0'結(jié)束字符串。*/
~
④主函數(shù)
viod main()
{char str[100];
int n;
printf("input a string:");
get(str);
puts(str);
/*輸入輸出原字符串*/
fun(str);
/*利用fun函數(shù)刪除空格*/
printf("str:%s\n",str);
c語言去掉字符串的空格函數(shù) void trim(char *s){} 如下:
#include stdio.h
void trim(char *s){
int i,L;
L=strlen(s);
for (i=L-1;i=0;i--) if (s[i]==' ')strcpy(s+i,s+i+1);
}
int main(){
char s[100];
printf("input 1 line string\n");
gets(s);
trim(s);
printf("%s\n",s);
return 0;
}
例如:
input 1 line string
abc 123 XYZ |
輸出:abc123XYZ|
很簡單的程序,遍歷輸入字符串。
1、如果字符不是空格,就賦值到輸出字符串中。
2、如果是空格,就跳過這個字符。
例如:
#include stdio.h
#include string.h
int main()
{
const char * input = "Hello World! Welcome To Beijing!";
char output[1024];
int i, j, input_len;
input_len = strlen(input);
j = 0;
for(i = 0; i input_len; i++)
{
if (input[i] != ' ')
{
output[j] = input[i];
j++;
}
}
output[j] = '\0';
printf("Input string is: %s\n", input);
printf("After spaces were removed: %s\n", output);
return 0;
}
具體的輸出效果為:
Input string is: Hello World! Welcome To Beijing!
After spaces were removed: HelloWorld!WelcomeToBeijing!