I am trying to add integer to Arabic string but no success
// Arabic String
Astr = "سُوْرَةُ الْفَاتِحَة";
// String with Integer -1
num = "-"+1;
// Adding Strings
r = Astr + num;
r = num + Astr;
output : سُوْرَةُ الْفَاتِحَة-1
Desired output:
سُوْرَةُ الْفَاتِحَة-1
I want the integer on the right side .
Update : Am displaying this result in ListBox
in visual studio by using Items.Insert()
Method , so if anyone know to tweak ListBox then kindly share I mean if ListBox
display Numbers 1 2 3 4 with each row ?