std::strncmp
来自cppreference.com
在标头 <cstring> 定义
|
||
int strncmp( const char* lhs, const char* rhs, std::size_t count ); |
||
比较两个可能空终止的数组的至多 count 个字符。按字典序进行比较。不比较后随空字符的字符。
结果的正负号是被比较的数组中首对字符(都转译成 unsigned char)的值间的差的正负号。
若出现越过 lhs 或 rhs 结尾的访问,则行为未定义。若 lhs 或 rhs 为空指针,则行为未定义。
参数
lhs, rhs | - | 指向要比较的可能空终止的数组的指针 |
count | - | 要比较的最大字符数 |
返回值
若字典序中 lhs 先出现于 rhs 则为负值。
若 lhs 与 rhs 比较相等,或若 count 为零,则为零。
若字典序中 lhs 后出现于 rhs 则为正值。
注解
不同于 std::strcoll 和 std::strxfrm,此函数不考虑本地环境。
示例
运行此代码
#include <cstring> #include <iostream> void demo(const char* lhs, const char* rhs, int sz) { const int rc = std::strncmp(lhs, rhs, sz); if (rc < 0) std::cout << "[" << lhs << "] 的前 " << sz << " 个字符前驱于 [" << rhs << "]\n"; else if (rc > 0) std::cout << "[" << lhs << "] 的前 " << sz << " 个字符后继于 [" << rhs << "]\n"; else std::cout << "[" << lhs << "] 的前 " << sz << " 个字符等于 [" << rhs << "]\n"; } int main() { demo("Hello, world!", "Hello, everybody!", 13); demo("Hello, everybody!", "Hello, world!", 13); demo("Hello, everybody!", "Hello, world!", 7); demo("Hello, everybody!" + 12, "Hello, somebody!" + 11, 5); }
输出:
[Hello, world!] 的前 13 个字符后继于 [Hello, everybody!] [Hello, everybody!] 的前 13 个字符前驱于 [Hello, world!] [Hello, everybody!] 的前 7 个字符等于 [Hello, world!] [body!] 的前 5 个字符等于 [body!]
参阅
比较两个字符串 (函数) | |
比较来自两个宽字符串的一定量宽字符 (函数) | |
比较两个缓冲区 (函数) | |
按照当前本地环境比较两个字符串 (函数) |