码迷,mamicode.com
首页 > 其他好文 > 详细

Ruby_day[1]控制流2

时间:2014-10-22 21:52:30      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   java   strong   sp   div   on   

summary:

  1: puts "s in #{user_input}" 和puts ‘s in #{user_input}‘不同,前者#{user_input}会输出user_input的值,后者只是输出鸳原样,s in #{user_input}

  

 1 print "Thtring, pleathe!: "
 2 user_input = gets.chomp
 3 user_input.downcase!
 4 
 5 if user_input.include? "s"
 6   user_input.gsub!(/s/, "th")
 7 else
 8   puts "Nothing to do here!"
 9 end
10   
11 puts "Your string is: #{user_input}"

 

(As a general rule, Ruby methods that end with ? evaluate to the boolean values true or false.

Ruby_day[1]控制流2

标签:style   blog   color   ar   java   strong   sp   div   on   

原文地址:http://www.cnblogs.com/jypwn/p/4044262.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!