Tech Study

Write a Java program to get a substring of a given string between two specified positions

Introduction

In this demo I have used NetBeans IDE 8.2 for debugging purpose. But you can use any java programming language compiler as per your availability..

public class Javaexcercise {
 
   public static void main(String[] args)
    {
        String str = "TECHSTUDY - The Complete Debugging Solution";
 
        // Get a substring of the above string starting from
        // index 10 and ending at index 26.
        String newstr = str.substring(12, 43);
 
        // Display the two strings for comparison.
        System.out.println("Old String = " + str);
        System.out.println("New String = " + newstr);
    }
}

Result

Write a Java program to get a substring of a given string between two specified positions
Write a Java program to get a substring of a given string between two specified positions

TaggedWrite a Java program to get a substring of a given string between two specified positions

Python Examples

Introduction: Python Examples are the basic programming concepts of python like python syntax,python data types,,python operators,python if else,python comments etc.. …

Read more

C String Functions

C String Functions perform certain operations, It provides many useful string functions which can come into action. The <string.h> header …

Read more