如何在 C++ 中忽略大小写的比较两个字符串
本文将介绍如何在 C++ 中比较两个字符串而忽略字母大小写的多种方法。
使用 strcasecmp
函数比较两个忽略大小写的字符串
strcasecmp
是 C 标准库函数,可以使用 <cstring>
头文件包含在 C++ 源文件中。该函数本身以逐个字节为单位进行操作,并在对应的字符串评估时,返回一个小于或等于或大于 0 的整数。
即,如果忽略大小写情况下两个字符串相等,返回值为 0。在其他情况下,当找到第一个不同的字符时,将其与值比较到其字母位置,并返回相应的结果。
#include <iostream>
#include <string>
#include <cstring>
using std::cout; using std::cin;
using std::endl; using std::string;
int main(){
string text1 = "Hey! Mr. Tambourine man, play a song for me";
string text2 = "hey! Mr. Tambourine man, PLAY a song for me";
string text3 = "Hey! Mrs. Tambourine man, play a song for me";
if (strcasecmp(text1.c_str(), text2.c_str()) == 0) {
cout << "strings: text1 and text2 match." << endl;
} else {
cout << "strings: text1 and text2 don't match!" << endl;
}
if (strcasecmp(text1.c_str(), text3.c_str()) == 0) {
cout << "strings: text1 and text3 match." << endl;
} else {
cout << "strings: text1 and text3 don't match!" << endl;
}
return EXIT_SUCCESS;
}
输出:
strings: text1 and text2 match.
strings: text1 and text3 don't match!
使用 strncasecmp
函数比较两个忽略大小写的字符串
strncasecmp
是一个上述函数的另一个变体,可用于从两个字符串中比较给定数量的字符,并且忽略大小写。该函数采用整数值表示需要从第一个字符开始,取需要比较的最大字符数。下面的例子演示了如何比较两个字符串的前 5 个字符,忽略大小写。
#include <iostream>
#include <string>
#include <cstring>
using std::cout; using std::cin;
using std::endl; using std::string;
constexpr int BYTES_TO_COMPARE = 5;
int main(){
string text1 = "Hey! Mr. Tambourine man, play a song for me";
string text3 = "hey! Mrs. Tambourine man, PLAY a song for me";
if (strncasecmp(text1.c_str(), text3.c_str(), BYTES_TO_COMPARE) == 0) {
printf("The first %d characters of strings: text1 and text3 match.\n", BYTES_TO_COMPARE);
}
return EXIT_SUCCESS;
}
输出:
The first 5 characters of strings: text1 and text3 match.
使用自定义的 toLower
函数和 ==
操作符来比较两个字符串,忽略大小写
另外,我们也可以将字符串转换为相同的情况,然后使用简单的 ==
运算符进行比较。作为一种任意的选择,这个例子提供了用用户定义的函数来降低两个字符串,该函数返回 string
对象。最后,if
语句可以包含比较表达式。
#include <iostream>
#include <string>
#include <cstring>
using std::cout; using std::cin;
using std::endl; using std::string;
std::string toLower(std::string s) {
std::transform(s.begin(), s.end(), s.begin(),
[](unsigned char c){ return std::tolower(c); });
return s;
}
int main(){
string text1 = "Hey! Mr. Tambourine man, play a song for me";
string text2 = "Hey! Mr. Tambourine man, play a song for me";
string text3 = "Hey! Mrs. Tambourine man, play a song for me";
if (toLower(text1) == toLower(text2)){
cout << "strings: text1 and text2 match." << endl;
} else {
cout << "strings: text1 and text2 don't match!" << endl;
}
if (toLower(text1) == toLower(text3)){
cout << "strings: text1 and text3 match." << endl;
} else {
cout << "strings: text1 and text3 don't match!" << endl;
}
return EXIT_SUCCESS;
}
输出:
strings: text1 and text2 match.
strings: text1 and text3 don't match!
相关文章
在 C++ 中通过掷骰子生成随机值
发布时间:2023/04/09 浏览次数:169 分类:C++
-
本文解释了如何使用时间因子方法和模拟 C++ 中的掷骰子的任意数方法生成随机数。了解它是如何工作的以及它包含哪些缺点。提供了一个 C++ 程序来演示伪数生成器。
在 C++ 中使用模板的链表
发布时间:2023/04/09 浏览次数:158 分类:C++
-
本文解释了使用模板在 C++ 中创建链表所涉及的各个步骤。工作程序演示了一个链表,该链表使用模板来避免在创建新变量时声明数据类型的需要。
在 C++ 中添加定时延迟
发布时间:2023/04/09 浏览次数:142 分类:C++
-
本教程将为你提供有关在 C++ 程序中添加定时延迟的简要指南。这可以使用 C++ 库为我们提供的一些函数以多种方式完成。
在 C++ 中创建查找表
发布时间:2023/04/09 浏览次数:155 分类:C++
-
本文重点介绍如何创建查找表及其在不同场景中的用途。提供了三个代码示例以使理解更容易,并附有代码片段以详细了解代码。
如何在 C++ 中把字符串转换为小写
发布时间:2023/04/09 浏览次数:63 分类:C++
-
介绍了如何将 C++ std::string 转换为小写的方法。当我们在考虑 C++ 中的字符串转换方法时,首先要问自己的是我的输入字符串有什么样的编码
如何在 C++ 中确定一个字符串是否是数字
发布时间:2023/04/09 浏览次数:163 分类:C++
-
本文介绍了如何检查给定的 C++ 字符串是否是数字。在我们深入研究之前,需要注意的是,以下方法只与单字节字符串和十进制整数兼容。
如何在 c++ 中查找字符串中的子字符串
发布时间:2023/04/09 浏览次数:65 分类:C++
-
本文介绍了在 C++ 中检查一个字符串是否包含子字符串的多种方法。使用 find 方法在 C++ 中查找字符串中的子字符串
如何在 C++ 中把字符串转换为 Char 数组
发布时间:2023/04/09 浏览次数:107 分类:C++
-
本文介绍了在 C++ 中把字符串转换为 char 数组的多种方法。使用 std::basic_string::c_str 方法将字符串转换为 char 数组