Here you can find the source of delSuffix(String str)
public static String delSuffix(String str)
//package com.java2s; public class Main { public static String delSuffix(String str) { int index = str.lastIndexOf("."); if (index >= 0) { return str.substring(0, index); } else {//from www. j av a 2 s . c om return str; } } }