A summary of the usage of string function substring in Java _java

Source: Internet
Author: User

String str;
str=str.substring (int beginindex); intercepts the string of STR from the first letter length to Beginindex, assigning the remaining string to STR;

str=str.substring (int beginindex,int endindex); intercepts the string from the beginning of the beginindex to the end of the Endindex in STR and assigns it to STR;

Demo

Copy Code code as follows:

Class Test
{
public static void Main (string[] args)
{
String S1 = "1234567890ABCDEFGH";
S1 = s1.substring (10);
System.out.println (S1);
}
}

Run Result: abcdefgh
Copy Code code as follows:

Class Test
{
public static void Main (string[] args)
{
String S1 = "1234567890ABCDEFGH";
S1 = s1.substring (0,9);
System.out.println (S1);
}
}

Run Result: 123456789

Here is a typical example:

Copy Code code as follows:

public class stringdemo{

public static void Main (String agrs[]) {

String Str= "This are my original string";

String todelete= "original";

if (Str.startswith (Todelete))
Str=str.substring (Todelete.length ());
Else
if (Str.endswith (Todelete))
Str=str.substring (0, Str.length ()-todelete.length ());
Else
{
int Index=str.indexof (todelete);
if (index!=-1)
{
String str1=str.substring (0, index);
String str2=str.substring (Index+todelete.length ());
STR=STR1+STR2;
}
Else
System.out.println ("string/" "+todelete+"/"Not Found");
}
System.out.println (str);
}
}


Run Result:
This are my string

Related Article

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.