Ruby 字符串 delete_prefix!方法

Ruby 字符串 delete_prefix!方法

delete_prefix! 是Ruby中的一个字符串类方法,用于返回一个删除了前缀的给定字符串的副本,如果没有改变,则返回nil。

语法: str.delete_prefix

参数: 这里,str是给定的字符串。

返回: 给定字符串的副本,删除前缀;如果没有改变,则返回nil。

例子 1 :

# Ruby program to demonstrate 
# the delete_prefix! method 
       
# Taking a string and 
# using the method
puts "Ruby".delete_prefix!("Ru")
puts "Class".delete_prefix!("Cl")

输出

by
ass

例2 :

# Ruby program to demonstrate 
# the delete_prefix! method 
       
# Taking a string and 
# using the method
puts "Sample".delete_prefix!("am")
puts "Input".delete_prefix!("In")

输出


put

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程