I have a string like myweb.com/blabla/blabla/image.jpg How could I get substring that starts at the end and ends when first "/" char? Expected string will be image.jpg.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
||||
|
|
|
Use Below Code for that.
|
|||
|
|
|
Being
getLastPathSegment in you case will return image.jpg. Apart from that you can easilly extract other information using uri object. |
|||
|
fullPath being the |
|||
|
|
|
Use
|
|||
|
|
|
Take a look at the File class. Has everything you need to get paths, filenames, extensions etc. http://developer.android.com/reference/java/io/File.html getName() will help. http://developer.android.com/reference/java/io/File.html#getName() |
|||
|
|