StackOverflow 文档 Ruby Language 教程 字符串 字符串以。开头 字符串以。开头 Created: November-22, 2018 要查找字符串是否以模式开头,start_with? 方法会派上用场 str = "zebras are cool" str.start_with?("zebras") => true 你还可以使用 index 检查图案的位置 str = "zebras are cool" str.index("zebras").zero? => true 字符串插值加入字符串