C++ 字符串判断是否相等
时间: 2023-09-02 15:12:07 浏览: 116
判断输入的两个字符串是否相等
5星 · 资源好评率100%
在 C++ 中,可以使用 `==` 操作符来判断两个字符串是否相等。例如:
```cpp
string str1 = "hello";
string str2 = "world";
if (str1 == str2) {
cout << "str1 is equal to str2" << endl;
} else {
cout << "str1 is not equal to str2" << endl;
}
```
其中,`==` 操作符会比较两个字符串的内容是否相等,如果相等则返回 `true`,否则返回 `false`。注意字符串比较是区分大小写的,即 "hello" 和 "Hello" 是不相等的。如果需要忽略大小写,可以使用 `strcasecmp` 或 `stricmp` 等函数。
阅读全文