• c语言实现去除字符串首尾空格


    字符串内存图如下:

    引入头文件:

     1 #include<stdlib.h>
     2 #include<stdio.h>
     3 #include<string.h>
    

     函数原型:

    1 void trim(char *strIn /*in*/, char *strOut /*in*/);

    实现方法一:

    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] = '';
    }

    实现方法二:

     1 void trim(char *strIn, char *strOut){
     2 
     3     char *start, *end, *temp;//定义去除空格后字符串的头尾指针和遍历指针
     4     
     5     temp = strIn;
     6 
     7     while (*temp == ' '){
     8         ++temp;
     9     }
    10 
    11     start = temp; //求得头指针
    12 
    13     temp = strIn + strlen(strIn) - 1; //得到原字符串最后一个字符的指针(不是'')
    14 
    15     printf("%c
    ", *temp);
    16 
    17     while (*temp == ' '){
    18         --temp;
    19     }
    20 
    21     end = temp; //求得尾指针
    22     
    23 
    24     for(strIn = start; strIn <= end; ){
    25         *strOut++ = *strIn++;
    26     }
    27 
    28     *strOut = '';
    29 }

    测试:

     1 void main(){
     2     char *strIn = "   ak kl  p  ";
     3 
     4     char strOut[100];
     5 
     6     trim(strIn, strOut);
     7 
     8     printf("*%s*
    ",strOut);
     9 
    10     system("pause");
    11 }
  • 相关阅读:
    AngularJS(3)-过滤器
    AngularJS(2)-Scope作用域和控制器
    iOS局部刷新
    python(一)入门
    Java基础
    AngularJS(1)随笔
    mac下如何查看指定端口被谁占用并且杀死该进程
    Python 字节码bytecode
    Python 作用域和命名空间
    Python函数的默认参数的设计【原创】
  • 原文地址:https://www.cnblogs.com/zhouquan-1992-04-06/p/6200784.html
Copyright © 2020-2023  润新知