在Ruby中,可以使用内置的printf
和format
方法进行数据格式化。printf
方法类似于C语言中的printf
函数,而format
方法则类似于Python中的str.format
方法。
printf
方法:name = "John"
age = 30
# 输出格式化字符串
printf("My name is %s and I am %d years old.\n", name, age)
format
方法:name = "John"
age = 30
# 输出格式化字符串
puts format("My name is %s and I am %d years old.", name, age)
在这两个示例中,我们使用了占位符(如%s
和%d
),它们将被传递给printf
或format
方法的参数替换。%s
表示字符串,%d
表示整数。你可以根据需要使用其他格式化占位符,如%f
(浮点数)、%x
(十六进制数)等。
更多关于Ruby格式化输出的信息,可以查阅官方文档:https://ruby-doc.org/core-2.6.9/String.html#method-i-printf