String str;
str=str.substring(int BeginIndex); intercepte la chaîne dont la longueur est BeginIndex à partir de la première lettre de str et attribue la chaîne restante à str;
str=str .substring(int beginIndex, int endIndex); intercepte la chaîne de beginIndex à la fin de endIndex dans str et attribue-la à str;
demo:
class Test { public static void main(String[] args) { String s1 ="1234567890abcdefgh"; s1 = s1.substring(10); System.out.println(s1); } }
Exécuter le résultat : abcdefgh
class Test { public static void main(String[] args) { String s1 ="1234567890abcdefgh"; s1 = s1.substring(0,9); System.out.println(s1); } }
Résultat de l'exécution : 123456789
Ce qui suit est un exemple typique :
public class StringDemo{ public static void main(String agrs[]){ String str="this is 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); } }
Résultat de l'exécution :
c'est ma chaîne
Pour plus d'articles liés au résumé d'utilisation de la fonction de chaîne subString en JAVA, veuillez faire attention au site Web PHP chinois !