2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

逐語的文字列リテラルにびっくり

Last updated at Posted at 2024-12-03

逐語的文字列リテラルを使用しない場合、\nや\tを出力したい!と思った時、\をエスケープするために
\n→\n \t→\t
としてエスケープさせなくてはいけない

逐語的文字列リテラルを使用すると...
使用前

Console.WriteLine("aa \\\n \\\t \\"Hello\\"");

使用後

Console.WriteLine(@"aa \n \t ""Hello""");

→ わざわざ"\"でエスケープしなくても"@"1つですべてエスケープしてくれる!

※注意点
逐語的文字列リテラルを使用して「" "」をエスケープしたいとき、
Console.WriteLine(@""Hello"");→✖

「""」で1つのダブルクォーテーションを判断されるから、正しくは

Console.WriteLine(@"""Hello"""); → ○

2
0
2

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
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?