/* C语言去除字符串首尾空格,trim()函数实现 https://blog.csdn.net/u013022032/article/details/50521465 */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> //去除尾部空白字符 包括 /* 标准的空白字符包括: ' ' (0x20) space (SPC) 空格符 ' ' (0x09) horizontal tab (TAB) 水平制表符 ' ' (0x0a) newline (LF) 换行符 'v' (0x0b) vertical tab (VT) 垂直制表符 'f' (0x0c) feed (FF) 换页符 ' ' (0x0d) carriage return (CR) 回车符 //windows linux mac */ char *rtrim(char *str) { if (str == NULL || *str == '