Ruby 字符串 insert方法
insert 是Ruby中的一个String类方法,用于在给定索引的字符之前插入指定的字符串,修改给定的字符。负数的索引从字符串的末尾开始计算,在给定的字符之后插入。
语法: str.insert(index, other_str)
参数: 这里,str是给定的字符串。
返回: 一个经过修改的字符串。
例子 1 :
# Ruby program to demonstrate
# the insert method
# Taking a string and
# using the method
puts "Ruby".insert(0, 'Z')
puts "Program".insert(3, 'Z')
输出
ZRuby
ProZgram
例2 :
# Ruby program to demonstrate
# the insert method
# Taking a string and
# using the method
puts "Sample".insert(-4, 'Z')
puts "Articles".insert(-5, 'Z')
输出
SamZple
ArtiZcles