Skip to content

C 语言去除字符串空格的多种方法

Published: at 06:22 AMSuggest Changes

今天我去应聘,面试我的大佬考了我一道题,但是我没有做出来,太丢人了。 他的要求是 C 语言写出一个去除空格的函数。 应该自我反省并做笔记。 查了一下资料,多次实验,给出的程序如下。

#include<stdlib.h>
#include<stdio.h>
#include<string.h>

void trim(char *strIn, char *strOut) {
	int i, j ;
	i = 0;
	j = strlen(strIn) - 1;
	while (strIn[i] == ' ')
		++i;
	while (strIn[j] == ' ')
		--j;
	strncpy(strOut, strIn + i , j - i + 1);
	strOut[j - i + 1] = '\0';
}

void main() {
	char *strIn = "   ak kl  p  ";
	char strOut[100];
	trim(strIn, strOut);
	printf("*%s*\n", strOut);
	system("pause");
}

还可以用下面的函数去除空格

void trim(char *strIn, char *strOut) {
	char *start, *end, *temp;//定义去除空格后字符串的头尾指针和遍历指针
	temp = strIn;
	while (*temp == ' ') {
		++temp;
	}
	start = temp; //求得头指针
	temp = strIn + strlen(strIn) - 1; //得到原字符串最后一个字符的指针 (不是'\0')
	printf("%c\n", *temp);
	while (*temp == ' ') {
		--temp;
	}
	end = temp; //求得尾指针
	for (strIn = start; strIn <= end; ) {
		*strOut++ = *strIn++;
	}
	*strOut = '\0';
}

程序代码转载自:daxueit.com

基础学的不扎实,期望以后能够努力学习。

浏览笔记

https://stackoverflow.com/questions/1726302/removing-spaces-from-a-string-in-c https://www.geeksforgeeks.org/remove-spaces-from-a-given-string/

后记

我文笔并不是很好,如果用 WordPress 博客程序写我估计会逻辑混乱,排版糟糕。 哪位巨巨指点一下让我写的更好,感激不尽。


Previous Post
写给 2035 年自己的信
Next Post
啃萝卜:一款优秀的 Arduino 图形化编程软件