substring in android code example
Example 1: android substring
String substr=mysourcestring.substring(startIndex);
Example 2: android substring
String substr=mysourcestring.substring(mysourcestring.indexOf("characterValue"));
String substr=mysourcestring.substring(startIndex);
String substr=mysourcestring.substring(mysourcestring.indexOf("characterValue"));