文字列に出現する ASCII 文字をすべて見つけて、新しい行に置き換えようとしています。これが私がこれまでに持っているものです:
public string parseText(string inTxt)
{
//String builder based on the string passed into the method
StringBuilder n = new StringBuilder(inTxt);
//Convert the ASCII character we're looking for to a string
string replaceMe = char.ConvertFromUtf32(187);
//Replace all occurences of string with a new line
n.Replace(replaceMe, Environment.NewLine);
//Convert our StringBuilder to a string and output it
return n.ToString();
}
これは新しい行に追加されず、文字列はすべて 1 行に残ります。ここで何が問題なのかわかりません。私もこれを試しましたが、同じ結果:
n.Replace(replaceMe, "\n");
助言がありますか?