strtok string function in C programming language
- Home
- function in C
- strtok string function in C programming language
- On
- By
- 0 Comment
- Categories: function in C, Library function in C, Pre-define String function in C
strtok string function in C programming language
strtok string function in C programming language
In this tutorial, we will discuss strtok string function in C programming language
strtok() -In C programming language, strtok() used to breaks the token into a series of the string using the delimiter.
Declaration
Syntax
The syntax of the strtok() function in the c language is :
char *strtok(char *str1, const char *delemiters);
parameter or arguments
str1– The content of the string is separated into a smaller part of the string(smaller token)
delimiters(String) – It is containing delimiter characters used to breaks token
Returns
The strtok() returns a pointer to the first character of the token. If the token cannot be found, a null pointer is returned
Required Header
the required header for strtok() in C Programming language
#include<string.h>
strtok string function in C
Example
In this program input string “My website, code for coding, for learning coding” is analyzed using strtok() function, delimiter comma(,) is used to separates each substring from the main string
Program 1
#include <stdio.h> #include <stdlib.h> int main() { char myweb[100]="My web site, code for coding, for learning coding"; char *p; p=strtok(myweb,",:"); while(p!=NULL) { printf("%s\n",p); p=strtok(NULL,",:"); getch(); } return 0; }
When above program me is compiled it will produce the following result
My web site code for coding for learning coding
There are other C programming language functions that are similar to the this function
strrev() function in C language
strrchr() function in C language
strdup() function in C language
strlwr() function in C language
strupr() function in C language
strrev() function in C language
strset() function in C language
strnset() function in C language
strtok() function in C language
strcat() function in C language
strncat() function in C language
strcpy() function in C language
strncpy() function in C language
strcmp() function in C language
strchr () function in C language
strdub () function in C language
Suggested for you
String handling in C programming language
User defined function in C language