JAVA中截取字符串中指定字符串

JAVA中截取指定字符串

举个例子,需要截取“abcdef”中的“cde”。
场景1:获取该字符串的下标。输出“cde”。

public static void main(String[] args) {
		// TODO Auto-generated method stub
		String data = "abcdef";
		String out = data.substring(2,5);
		System.out.println(out);
	}

输出结果:
JAVA中截取字符串中指定字符串_第1张图片
场景2:根据字符串内容。输出“cde”

public static void main(String[] args) {
		// TODO Auto-generated method stub
		String data = "abcdef";
		String out = data.substring(data.indexOf("c"),data.indexOf("f"));
		
		System.out.println(out);
	}

输出结果:
JAVA中截取字符串中指定字符串_第2张图片

你可能感兴趣的:(JAVA中截取字符串中指定字符串)