android - trim string to a specific character -
i want trim specific string till specific character. string: com.icecoldapps.screenshoteasy
example shall string screenshoteasy
. larger strings com.google.android.syncadapters.contacts
shall trimed contacts
.
how that?
thanks
string yourstring = "com.google.android.syncadapters.contacts"; string[] sarr = yourstring.split("\\."); string output = sarr[sarr.length-1];
Comments
Post a Comment