Localization library | |||||||||||||||||||||||||
Regular expressions library(C++11) | |||||||||||||||||||||||||
Formatting library(C++20) | |||||||||||||||||||||||||
Null-terminated sequence utilities | |||||||||||||||||||||||||
Byte strings | |||||||||||||||||||||||||
Multibyte strings | |||||||||||||||||||||||||
Wide strings | |||||||||||||||||||||||||
Primitive numeric conversions | |||||||||||||||||||||||||
| |||||||||||||||||||||||||
Text encoding identifications | |||||||||||||||||||||||||
|
Functions | ||||||||||||||||||||||||||||||||||||
Character classification | ||||||||||||||||||||||||||||||||||||
Character manipulation | ||||||||||||||||||||||||||||||||||||
Conversions to numeric formats | ||||||||||||||||||||||||||||||||||||
|
| |||||||||||||||||||||||||||||||||||
String manipulation | ||||||||||||||||||||||||||||||||||||
String examination | ||||||||||||||||||||||||||||||||||||
Character array functions | ||||||||||||||||||||||||||||||||||||
Miscellaneous | ||||||||||||||||||||||||||||||||||||
Defined in header <cstring> | ||
int strncmp(constchar* lhs,constchar* rhs,std::size_t count); | ||
Compares at mostcount characters of two possibly null-terminated arrays. The comparison is done lexicographically. Characters following the null character are not compared.
The sign of the result is the sign of the difference between the values of the first pair of characters (both interpreted asunsignedchar) that differ in the arrays being compared.
The behavior is undefined when access occurs past the end of either arraylhs orrhs. The behavior is undefined when eitherlhs orrhs is the null pointer.
Contents |
lhs, rhs | - | pointers to the possibly null-terminated arrays to compare |
count | - | maximum number of characters to compare |
Negative value iflhs appears beforerhs in lexicographical order.
Zero iflhs andrhs compare equal, or ifcount is zero.
Positive value iflhs appears afterrhs in lexicographical order.
This function is not locale-sensitive, unlikestd::strcoll andstd::strxfrm.
#include <cstring>#include <iostream> void demo(constchar* lhs,constchar* rhs,int sz){constint rc= std::strncmp(lhs, rhs, sz);if(rc<0)std::cout<<"First "<< sz<<" chars of ["<< lhs<<"] precede ["<< rhs<<"]\n";elseif(rc>0)std::cout<<"First "<< sz<<" chars of ["<< lhs<<"] follow ["<< rhs<<"]\n";elsestd::cout<<"First "<< sz<<" chars of ["<< lhs<<"] equal ["<< 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);}
Output:
First 13 chars of [Hello, world!] follow [Hello, everybody!]First 13 chars of [Hello, everybody!] precede [Hello, world!]First 7 chars of [Hello, everybody!] equal [Hello, world!]First 5 chars of [body!] equal [body!]
compares two strings (function)[edit] | |
compares a certain amount of characters from two wide strings (function)[edit] | |
compares two buffers (function)[edit] | |
compares two strings in accordance to the current locale (function)[edit] | |
C documentation forstrncmp |