在C++中,strchr
函數是一個標準庫函數,用于在一個字符串中查找指定字符的第一個匹配項
#include <iostream>
#include <cstring>
char* strchr(const char* str, int c);
參數說明:
str
:指向要搜索的字符串的指針。c
:要查找的字符。返回值:
strchr
函數返回一個指向該字符的指針。strchr
函數返回nullptr
。下面是一個簡單的示例,演示如何使用strchr
函數查找字符’a’在一個字符串中:
#include <iostream>
#include <cstring>
int main() {
const char* str = "Hello, World!";
int c = 'a';
char* result = strchr(str, c);
if (result != nullptr) {
std::cout << "字符 '"<< c << "' 在字符串 \"" << str << "\" 中的位置: " << result - str << std::endl;
} else {
std::cout << "字符 '"<< c << "' 在字符串 \"" << str << "\" 中未找到。" << std::endl;
}
return 0;
}
在這個示例中,strchr
函數將在字符串"Hello, World!"
中查找字符’a’。由于該字符在字符串中存在,因此strchr
函數將返回一個指向’a’的指針,然后我們可以通過計算指針與字符串開始地址之間的差值來找到字符的位置。