在 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