码迷,mamicode.com
首页 > 其他好文 > 详细

C-配置文件-取会话

时间:2020-03-22 17:39:16      阅读:57      评论:0      收藏:0      [点我收藏+]

标签:文件   har   main   char s   ring   shell   turn   lan   代码   

代码:

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

const char *p = "  [ session  ]  ";

int main() {
    char *ps1 = NULL;
    char *ps2 = NULL;
    char s[64] = {0};

    ps1 = p + strspn(p, "[ \t");
    printf("%s\n", ps1);
    ps2 = ps1 + strcspn(ps1, "\t ]");
    printf("%s\n", ps2);

    strncpy(s, ps1, ps2-ps1);
    printf("%s\n", s); 

    return 0;
}

结果:

session  ]
  ]
session

C-配置文件-取会话

标签:文件   har   main   char s   ring   shell   turn   lan   代码   

原文地址:https://www.cnblogs.com/kansnow/p/12546964.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!