I have an array and the contents look something like this:
"user/01453303276519456080/state/com.google/starred",
"user/01453303276519456080/state/com.google/broadcast",
"user/01453303276519456080/label/comics",
"user/01453303276519456080/label/General News",
"user/01453303276519456080/label/iPhone Related News",
"user/01453303276519456080/label/Programming",
"user/01453303276519456080/label/Sports",
"user/01453303276519456080/label/Tech News",
"user/01453303276519456080/label/Tutorials",
"user/01453303276519456080/state/com.blogger/blogger-following"
I want to extract only the last words after "/" (e.g. General News, Programming, etc) The unique id after user/ will not be constant.
Can someone give me an idea to implement this?
Cheers, iSEE