2
3

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.

Ruby  大文字⇔小文字に変換する方法

Posted at

はじめに

今回はRubyで文字列を大文字⇔小文字に変換するメソッドをやっていきます!

今回使うメソッド
・downcaseで大文字を小文字に変換
・upcaseで小文字を大文字に変換
・swapcaseで小文字⇔大文字の変換
・capitalizeで先頭の小文字を大文字に変換

downcaseメソッド

downcaseメソッドは、文字列に含まれる大文字を小文字に変換したいときに使用するメソッドです。

文字列.downcase
str = "Hello World"
 
puts str.downcase

[出力結果]

hello world

upcase

upcaseメソッドは、文字列に含まれる大文字を小文字に変換したいときに使うメソッドです。

文字列.upcase
str = "Hello World"
 
puts str.upcase

[出力結果]

HELLO WORLD

swapcase

swapcaseメソッドは文字列の中の大文字と小文字を入れ替えるメソッドです。

文字列.swapcase
str = "Hello World"
 
puts str.swapcase

[出力結果]

hELLO wORLD

capitalize

capitalizehは先頭の小文字を大文字に変換するメソッドです

文字列.capitalize
str = "hello world"
 
puts str.capitalize

[出力結果]

Hello World
2
3
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
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?