I have a file name like 12343.mp4
and I want to show this text inside of a Persian text. For example I want to show something like this:
But what I get is like this:
As you can see the .mp4
part goes to the start of the file name instead of end of it.
This is my code:
fun main() {
val fileName = "12343.mp4"
val text = "دانلود فایل $fileName تمام شد."
println(text)
}
Is it possible to fix this problem? Thanks.