| Functions | |||||||||||||||||||||||||||||||||||||||||
| Character manipulation | |||||||||||||||||||||||||||||||||||||||||
| Conversions to and from numeric formats | |||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||
| String manipulation | |||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||
| String examination | |||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||
| Memory manipulation | |||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||
| Miscellaneous | |||||||||||||||||||||||||||||||||||||||||
(C11)(C11) | |||||||||||||||||||||||||||||||||||||||||
Defined in header <string.h> | ||
int strncmp(constchar* lhs,constchar* rhs,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 if count is zero.
Positive value iflhs appears afterrhs in lexicographical order.
This function is not locale-sensitive, unlikestrcoll andstrxfrm.
#include <stdio.h>#include <string.h> void demo(constchar* lhs,constchar* rhs,int sz){constint rc= strncmp(lhs, rhs, sz);if(rc<0)printf("First %d chars of [%s] precede [%s]\n", sz, lhs, rhs);elseif(rc>0)printf("First %d chars of [%s] follow [%s]\n", sz, lhs, rhs);elseprintf("First %d chars of [%s] equal [%s]\n", sz, lhs, rhs);}int main(void){constchar* string="Hello World!"; demo(string,"Hello!",5); demo(string,"Hello",10); demo(string,"Hello there",10); demo("Hello, everybody!"+12,"Hello, somebody!"+11,5);}
Output:
First 5 chars of [Hello World!] equal [Hello!]First 10 chars of [Hello World!] follow [Hello]First 10 chars of [Hello World!] precede [Hello there]First 5 chars of [body!] equal [body!]
| compares two strings (function)[edit] | |
(C95) | 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 | |