The value i am getting in a tag is like
<text>customers/id/name/place</text>
now i want to retrieve the last value after the / that is 'place'.The problem i am facing is the value in text is changing for e.g it could be
<text>customers/id/name/place</text>
<text>suppliers/id/Germany/thing</text>
<text>supply/id/location/book</text>
what i want is the last value after the /.Because the value coming in text field is dynamic and i only have to extract the last value after the /.
please help
Thanks