Android examples for java.lang:String Strip
right Truncate a string
import android.util.Log; import java.io.UnsupportedEncodingException; import java.net.URLDecoder; import java.text.DecimalFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Arrays; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.regex.Matcher; import java.util.regex.Pattern; public class Main{ public static String rightTrunc(String str, int len) { if (str == null) { return null; }//from w ww . j a va 2s .c om int strLen = str.length(); if (strLen <= len || len < 0) { return str; } return str.substring(strLen - len); } }