Here you can find the source of left(String str, int len)
public static String left(String str, int len)
//package com.java2s; //License from project: Open Source License public class Main { /** return str.substring(0,endIdx) * */ public static String left(String str, int len) { return str.substring(0, len); }//from w w w . ja va 2s . co m }