欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C语言之字符串数组空格替换

程序员文章站 2022-04-22 09:17:49
问题描述:   字符串替换空格:请实现一个函数,把字符串中的每个空格替换成“%20”。例如输入“we are happy.&rdq...
问题描述:

 

字符串替换空格:请实现一个函数,把字符串中的每个空格替换成“%20”。例如输入“we are happy.”,则输出“we%20are%20happy.”。

 

代码实现:

 

#include <stdio.h>
int replace(char *p)
{
#if 0
 while(*p!='\0')
 {
  if(*p==' ')
  {
   printf("%%20");
  }
  else
  {
   printf("%c",*p);
  }
  p++;
 }
#endif//结束#if 0
if (*p == ' ')
{
 return 1;
}
else return 2;
 printf("\n");
}
int main()
{
 char arr[] ="we are happy.";
 char *p = arr;
 int ret = 0;
 while (*p != '\0')
 {
  ret = replace(p);
  if (ret == 1)
  {
   printf("%%20");
  }
  if (ret == 2)
  {
   printf("%c",*p);
  }
  p++;
 }
 printf("\n");
 return 0;
}

 

运行结果:
C语言之字符串数组空格替换