C Common String functions

Source: Internet
Author: User

Get string Length:

size_t strlen (const char *str);  

string copy function:

Copy the contents of src into dest , it will overwrite the original content, it will put src in the , no overwrite content unchanged

if the length in the SCR exceeds the length of the dest, it can cause the program to crash

strcpy (char * dest, const char * src);

Len: indicates the length of the string to be copied and does not contain the

strncpy (char * dest, const char *SRC, size_t len)

string concatenation function:

splicing the contents of SRC in the dest original string , from the back to find , find the first location to start stitching

If the length in the SCR exceeds the length of the dest, it can cause the program to crash  

strcat (char * dest, const char * src)

string comparison function:

STR1 and str2 from the first character to compare, if equal to find the next character is equal, if all the same return 0, if you encounter a non-equal character will return the difference of the ASCII value of two characters

strcmp (const char *STR1, const char * str2);

C Common String functions

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.