C-配置文件-取会话
Posted kansnow
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C-配置文件-取会话相关的知识,希望对你有一定的参考价值。
代码:
#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, "[ ");
printf("%s
", ps1);
ps2 = ps1 + strcspn(ps1, " ]");
printf("%s
", ps2);
strncpy(s, ps1, ps2-ps1);
printf("%s
", s);
return 0;
}
结果:
session ]
]
session
以上是关于C-配置文件-取会话的主要内容,如果未能解决你的问题,请参考以下文章