📜  红宝石|字符串清除方法

📅  最后修改于: 2022-05-13 01:55:27.083000             🧑  作者: Mango

红宝石|字符串清除方法

clear是 Ruby 中的 String 类方法,用于使字符串为空。

示例 1:

# Ruby program to demonstrate 
# the clear method 
       
# Taking a string and 
# using the method 
puts "String".clear
puts "Class".clear

输出:

示例 2:

# Ruby program to demonstrate 
# the clear method 
       
# Taking a string and 
# using the method 
puts "".clear
puts "Ruby".clear

输出: