0
我想提取的「/」油嘴串效用函數(echivalent爲strcspn)
例如第一次出現之後的存在的字符串一個具有一個char *卡在這種形式中的一種:
hw:0/Line
default/Master
,我需要的char *通道(線路,碩士,...)
在標準C可以用 「strcspn」 和 「strlen的」
char *card, *channel;
int i;
i = strcspn(card, "/");
if (i == strlen(card)) {
channel = "Master";
} else {
card[i] = 0;
channel = card + i + 1;
}
如何使用glib字符串實用程序函數執行此操作?