Ugly:
string strt = "Microsoft®";
string[] root = strt.Split('&');
string[] tmp = root[1].Split('#');
string[] tmpp = tmp[1].Split(';');
char spch = (char) ( int.Parse(tmpp[0].ToString()) );
TextBox1.Text = root[0] + spch.ToString();
Any other suggestions...
|