在 Ruby 中將字串轉換為小寫或大寫

Nurudeen Ibrahim 2023年1月30日 2022年5月18日
  1. 使用 upcase 方法將字串轉換為大寫
  2. 使用 downcase 方法將字串轉換為小寫
在 Ruby 中將字串轉換為小寫或大寫

將字串從一種情況轉換為另一種情況是程式設計中的一項常見任務,Ruby 提供了兩種方法來幫助解決這個問題,upcasedowncase

使用 upcase 方法將字串轉換為大寫

str = "Hello World"
puts str.upcase

輸出:

HELLO WORLD

使用 downcase 方法將字串轉換為小寫

示例程式碼:

str = "Hello World"
puts str.downcase

輸出:

hello world

值得一提的是 upcase!downcase! 方法的工作方式分別與 upcasedowncase 相同,但會改變原始字串。

str_1 = "Hello World"
str_2 = "Hello World"

puts str_1.upcase!
puts str_1

puts str_2.downcase!
puts str_2

輸出:

HELLO WORLD
HELLO WORLD

hello world
hello world

相關文章 - Ruby String

相關文章 - Ruby Method