使用关系运算符比较字符串,使用compare()
关系运算符与std :: 字符串:: compare()
- 返回值:关系运算符返回布尔值,而compare()返回无符号整数。
- 参数:关系运算符只需要两个字符串即可执行比较,一个正在被比较,另一个则作为参考,而compare()可以接受不同的参数来相应地执行某些任务。
- 比较方法:关系运算符根据当前字符特征按字典顺序比较字符,而compare()可以为每个字符串处理多个参数,以便您可以根据子字符串的索引和长度指定子字符串。
- 操作:我们可以使用compare()直接在字符串的一部分中执行比较,否则使用关系运算符将是一个相当长的过程。
例:*从STR2的第四位置3个字符比较3个字符从STR1的第三位置。* str1 = "GeeksforGeeks" * str2 = "HelloWorld!"
使用compare():
// CPP code to perform comparison using compare() #include
using namespace std; void usingCompare(string str1, string str2) { // Direct Comparison if (str1.compare(2, 3, str2, 3, 3) == 0) cout << "Both are same"; else cout << "Not equal"; } // Main function int main() { string s1("GeeksforGeeks"); string s2("HelloWorld !"); usingCompare(s1, s2); return 0; } 输出:
Not equal
使用关系运算符:
// CPP code for comparison using relational operator #include
using namespace std; void relational_operation(string s1, string s2) { int i, j; // Lexicographic comparison for (i = 2, j = 3; i <= 5 && j <= 6; i++, j++) { if (s1[i] != s2[j]) break; } if (i == 6 && j == 7) cout << "Equal"; else cout << "Not equal"; } // Main function int main() { string s1("GeeksforGeeks"); string s2("HelloWorld !"); relational_operation(s1, s2); return 0; } 输出:
Not equal
我们可以清楚地看到使用关系运算符时需要经历的额外处理。
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。