“Извлеките подстроение в String Java” Ответ

Извлеките подстроение в String Java

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

Извлеките подстроение в String Java

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

Ответы похожие на “Извлеките подстроение в String Java”

Вопросы похожие на “Извлеките подстроение в String Java”

Больше похожих ответов на “Извлеките подстроение в String Java” по Java

Смотреть популярные ответы по языку

Смотреть другие языки программирования