字符串

  1. 字符串

可以使用单引号或双引号来指定一个字符串。双引号情况下允许串中加入逃逸字符并能够嵌入待计算的表达式。在单引号串情况下,你看到的就是串中的实际内容。

ruby 代码
  1. irb(main):006:0> "try to add #{2+2}"  
  2. => "try to add 4"  

 一个百分号和小写或大写字母Q可以用来表达一个字符串,分别相应于单引号或双引号风格。跟随在q%或Q%后面的字符分别定义了字符串literal的开始和结束。

ruby 代码
  1. irb(main):001:0> %q@this is a single quote string #{2+2} here@   
  2. => "this is a single quote string \#{2+2} here"  
  3. irb(main):002:0> %Q@this is a double quote string #{2+2} here@   
  4. => "this is a double quote string 4 here"  
  1.  

你可能感兴趣的:(嵌入式,Ruby)