Home C-tutorials C String Substring



C String Substring
Posted on: February 6, 2009 at 12:00 AM
In this section, you will learn how to get the substring from a string in C. You can see in the given example, a string and a method substring() is created.

C String Substring

     

In this section, you will learn how to get the substring from a string in C. You can see in the given example, a string and a method substring() is created. Inside the method, we have declared the variables i and j to select the part of the string in order to get the substring. On calling the method substring(6,19,ch), you will get the substring from the specified string. Here 6 and 19 are the starting and ending index values of the string. 

Here is the code:

 

 

 

SUBSTRIN.C

#include <stdio.h>
#include <conio.h>
void substring(int i, int j, char *ch) {
  printf("The substring is: %.*s\n", j - i, &ch[i]);
}
void main() {
  char ch[] "Where there is will,there is a way.";
  clrscr();
  substring(619, ch);
  getch();
}

Output will be displayed as:

SUBSTRIN.EXE

Download Source Code

Related Tags for C String Substring:
cstringiomethodgetthiscreatesubstringexampletolearnexameareilsectionbstrcansubstrfrominsubmtrcamehowxaxampssucreatedeebstatisllivmpleaandarstrsubstssriringthsubsstpleplndonomo


More Tutorials from this section

Ask Questions?    Discuss: C String Substring   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.