C语言程序 去首尾空格怎么编
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言程序 去首尾空格怎么编相关的知识,希望对你有一定的参考价值。
可以分别用单循环实现:
#include<stdio.h>
void work(char s[]) //删除首尾空格
int i,j;
for(i=0;s[i]==' ';i++); //找到开头第一个非空格
for(j=0;s[i];)s[j++]=s[i++]; //删除开头空格
for(i--;s[i]==' ';i--)s[i]='\\0'; //删除末尾空格
void main()
char s[100]=" Hello! How are you? ";
work(s);
printf("s=\\"%s\\"\\n",s); //输出的串中已经没有首尾空格了
system("pause");
参考技术A #include <stdio.h>#include <string.h>
void func(char *str)
int index=0,i=0;
//去除串首空格
while(str[index]==' ') index++;
for(i=0; i<strlen(str)-index; i++) str[i] = str[i+index];
str[i]='\\0';
//去除串尾空格
index= strlen(str);
while(index>0 && str[index-1]==' ') index--;
str[index]='\\0';
int main()
char str[100];
gets(str);
func(str);
printf("%d\\n%s\\n",strlen(str),str);
return 0;
测试结果:
本回答被提问者和网友采纳如何用 js 去掉字符串首尾空格
关于去掉两头空格,jquery库提供了$.trim()方法,可是JS呢,我写了.trim(),在FF里有效果,但在IE里就没效了,群里的朋友说,如果浏览器实现了trim(),就有,如果浏览器没实现,只能用正则替换。function trimStr(str)return str.replace(/(^\\s*)|(\\s*$)/g,"");
用的时候就是直接
var 变量=trimStr(需要去空格的字符串) 参考技术A str.replace(/^\s+|\s+$/g,'') 参考技术B 你搜一下trim()函数就知道了
以上是关于C语言程序 去首尾空格怎么编的主要内容,如果未能解决你的问题,请参考以下文章