摘要:
字符串1.创建字符1:new用来创建新字符,empty?检验字符是否为空title = String.new #=> ""title.empty? #=>true创建字符2:用"="str = "hello"或者str='hello'(ps:单/双 引号区别," "会转义,' '原样输出,"\n"是换行效果)2.通用分隔符 %+例如!!,{},[]str = %! hehe !3.嵌入文档sonnet =33,因为是个"!",其字符 阅读全文
摘要:
条件控制本人喜欢用程序demo记录的方式来记录某方法的使用,如times方法,仅作个人学习记录#--------------if语句(相反是unless)而while相同于until--------------print "--------------if------------------------ps: in ruby,the symbol ','just works as plusing string\n"x = 0if x==0 then endp "x=0" if x==0unless x!=0 then end#--> 阅读全文