Here you can find the source of deleteLast(String str, int num)
public static final String deleteLast(String str, int num)
//package com.java2s; //License from project: Apache License public class Main { public static final String deleteLast(String str, int num) { if (str == null) return null; return str.substring(0, str.length() - num); }//from ww w .j a va 2 s. c om }