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

More than 1 year has passed since last update.

【Android】「" "(ダブルコーテーション)」を文字列に入力したい【Kotlin】

Posted at

「\」バックスラッシュを使う

「\」を「"」の前に入れることでダブルコーテーションを表示できる

"\"Hello, world!!!\""   // "Hello, world!!!"

三連引用符を使う

ダブルコーテーション三つで囲む方法でも表示できる

""""Hello, world!!!""""   // "Hello, world!!!"

おわりに

stringリソースを使えばこんなことしなくても良いような気もしますが、どうしてもリソースを使わずにダブルコーテーションを表示したい場合があるかと思い記事にしました。
簡単にではありましたが、軽いメモ的な感覚で今回の記事としておきます。

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