Concatenate DateTime string with Arabic String

jesse_0115

New Member
I'm trying to concatenate an Arabic string with a leading DateTime, I have tried in various way but the DateTime always ends up at the end of the string\[code\]var arabicText = "Jim ??? ?????? ????? ??? ?????? ??? John";var dateTime = DateTime.Now;System.Globalization.CultureInfo ci = new System.Globalization.CultureInfo("ar-AE");string test1 = arabicText + " :" + dateTime.ToString();string test2 = arabicText + " :" + dateTime.ToString(ci);\[/code\]So when this is displayed it should show \[quote\] Jim ??? ?????? ????? ??? ?????? ??? John :02/10/2012\[/quote\]but I always seem to end up with \[quote\] 02/10/2012: Jim ??? ?????? ????? ??? ?????? ??? John \[/quote\]Any ideas would be apprecicated
 
Back
Top