3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[Unity初心者メモ] 別ファイルから呼び出した`\n`文字は自前で改行コードに置換が必要

Posted at

Unity C#で
byteファイルから呼び出した改行コードは自前で改行コードに置換し直し必要

// ex. hoge:"hoge\nfuga"
if (hoge.Contains("\\n"))
{
    hoge = hoge.text.Replace(@"\n", Environment.NewLine);
}

参考 https://teratail.com/questions/134632

スクリプトファイル上にかいた

string hoge = "hoge\nfuga";

は、コンパイル時に自動で改行コードとしてあつかってくれるが、
別から呼び出した \n は、 \n という文字列として扱われるので

※小さいつまづきメモですが、
Unity C#初心者の自分には参考記事だけだとすぐには解決できなかったので明確なコードメモとしてあげてみました。

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?