2013-12-10 163 views

回答

1

這裏另一種方式來做到這一點

字符串
string mystr = "Hello World"; 
     var arr = mystr.Split(';'); 
     string newMStr = string.Empty; 
     foreach (var s in arr) 
     { 
      string newS= s.Remove(0, 2); 
      newMStr+= Convert.ToChar(int.Parse(newS)); 
     } 

     //Print NewMstr 
+0

; (分號)在mystr結尾會導致錯誤。 – burhan

2

在.NET 4

System.Net.WebUtility.HtmlDecode(mystr) 
相關問題