取双引号\“双引号之间\“之间的字符串


	public static void main(String[] args) {
		// TODO Auto-generated method stub
        String a="取双引号\"双引号之间\"之间的字符串";
        a.substring(a.indexOf("\"")+1, a.lastIndexOf("\""));
        
        System.out.println( a.substring(a.indexOf("\"")+1, a.lastIndexOf("\"")));
	}

取双引号\“双引号之间\“之间的字符串

上一篇:力扣1044.Longest Duplicate Substring C++ Accepted


下一篇:String的常用方法