Here you can find the source of substring(String _text, int _idx)
public static String substring(String _text, int _idx)
//package com.java2s; //License from project: Open Source License public class Main { public static String substring(String _text, int _idx) { if (_idx >= 0) { if (_idx < _text.length()) { return _text.substring(_idx); }/*from w w w.j av a2s . c o m*/ } return ""; } }