91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

C語言strstr和strtok函數怎么使用

小億
92
2023-08-01 15:24:16
欄目: 編程語言

C語言的strstr函數用于在一個字符串中查找另一個字符串的第一次出現位置。它的使用方法如下:

#include <stdio.h>
#include <string.h>
int main() {
char str[] = "This is a test string";
char *result;
result = strstr(str, "test");
if(result == NULL) {
printf("Substring not found\n");
}
else {
printf("Substring found at index %ld\n", result - str);
}
return 0;
}

輸出結果為:Substring found at index 10,表示在字符串str中找到了子字符串"test",其起始位置為索引10。

C語言的strtok函數用于將一個字符串分割成一系列子字符串。它的使用方法如下:

#include <stdio.h>
#include <string.h>
int main() {
char str[] = "This is a test string";
char *token;
token = strtok(str, " ");
while(token != NULL) {
printf("%s\n", token);
token = strtok(NULL, " ");
}
return 0;
}

輸出結果為:

This

is

a

test

string

這個例子將字符串str按照空格進行分割,并逐個打印出每個子字符串。

0
晋州市| 弥勒县| 通州区| 福海县| 岑巩县| 广东省| 乌鲁木齐县| 鹰潭市| 洛隆县| 巨鹿县| 沈阳市| 郴州市| 普兰县| 历史| 临邑县| 长白| 苏州市| 绩溪县| 沅陵县| 光山县| 保靖县| 长沙市| 洛宁县| 竹山县| 桦南县| 睢宁县| 霍城县| 山阳县| 永仁县| 万盛区| 新绛县| 东乡族自治县| 容城县| 区。| 金门县| 时尚| 宣威市| 泰宁县| 健康| 望奎县| 阳江市|