unity处理配置文件中的换行符

asklist[i].answer 是从配置文件中解析得到的字符串
处理后赋值给Text
根据字符串的行数,改变Text的高度

					 answertxt.Show();                   
                    string ans = System.Text.RegularExpressions.Regex.Unescape(asklist[i].answer);
                    string[] split = ans.Split(new char[2] { '\r', '\n' });                 
                    top -= (48+ (30 * split.Length));
                    answertxt.SetWidthHeight(contentWidth - 56, 30 * split.Length);
                    answertxt.SetText(ans);

你可能感兴趣的:(unity基础)