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 5 years have passed since last update.

Ruby 文字 を 出力 する ~puts "出力したい文字"~

Posted at

目的

  • Rubyで任意の文字をコンソールに出力する方法を知る

押さえるポイント

  • 出力を行うメソッド(命令)はputsを使用する。
  • 文字を表示するメソッドはputs以外にもp printなどがある。
  • 出力したい文字をダブルクオートで囲む

書き方の例

  • 下記に汎用的な文字の出力方法を記したRubyファイルの内容を記載する。
    >はコンソール出力
puts "出力したい文字列"
>"出力したい文字列"

より具体的な例

  • 下記にコンソールにmiriwoと出力する処理を記したRubyファイルの内容を記載する。
puts "miriwo"
>miriwo

puts以外の出力メソッド

pメソッド

  • pメソッドを使用すると出力文字にダブルクオートを付けて出力する。
  • pメソッドを用いてコンソールにmiriwoと出力する処理を記したRubyファイルの内容を記載する。
p "miriwo"
>"miriwo"

printメソッド

  • printメソッドは実行後に改行が行われない。
  • printメソッドを用いてmiriwoくんと出力する処理を記したRubyファイルの内容を記載する。
print "miriwo"
print "くん"
>miriwoくん
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?