“Wyodrębnij podłoże w Java String” Kod odpowiedzi

Wyodrębnij podłoże w Java String

int start = fullTitle.indexOf("GE3002");
int stop = fullTitle.indexOf(".01_01_01");
String res = fullTitle.substring(start, stop);
		
return res;
Magnificent Mallard

Wyodrębnij podłoże w Java String

public class Substring {
 
  public static void main(String[] args) {
    //consider this string
    //here indexing starts from 0 and space is considered as char in string
    String s = "Welcome to Scaler"
 
    //1
    System.out.println("The substring is: " + str.substring(11));
 
    //2
    System.out.println("The substring is: " + str.substring(0, 7));
  }
}

Output:
Scaler
Welcome
Disgusted Dolphin

Odpowiedzi podobne do “Wyodrębnij podłoże w Java String”

Pytania podobne do “Wyodrębnij podłoże w Java String”

Więcej pokrewnych odpowiedzi na “Wyodrębnij podłoże w Java String” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu