Here you can find the source of caststring1(String tmpq)
public static String caststring1(String tmpq)
//package com.java2s; //License from project: Open Source License public class Main { public static String caststring1(String tmpq) { String tmp1 = ""; if (tmpq.indexOf("-") <= 0) { int tt = tmpq.indexOf("."); if (tt > 0) tmp1 = tmpq.substring(0, tt); else/*from w ww . j a v a2s .c om*/ tmp1 = tmpq; } else { tmp1 = tmpq; } return tmp1; } }