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

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -