I'm having this string that in it have some arabic numbers that are causing some issues to my app. So what I need is to format(replace) the numbers to the original ones, like this:
//Arabic numbers:
http://example.com/mmm/michaeljackson/٠٠٣.mp3
//I want this to be converted like this:
http://example.com/mmm/michaeljackson/002.mp3
Right now I am doing this, but the string locale is staying the same
String.format(Locale.US, playlistSongs.get(playPosition).getLink())
Can someone help me solve this issue