• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Ruby中的%表示法

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

     %{String}  用于创建一个使用双引号括起来的字符串,这个表示法与%Q{String}完全一样

result = %{hello}  
puts "result is: #{result}, Type is:#{result.class}"  

#>>result is: hello, Type is:String 

 

    %Q{String} 用于创建一个使用双引号括起来的字符串 

    %q{String} 用于创建一个使用单引号括起来的字符串 

 从说明中可以看出这两个表示法的区别就是一个使用双引号,一个使用单引号。使用双引号的字符串会对字符串中的变量做较多替换,而单引号则做较少的替换。

world = "world"  
result = %Q{hello #{world}}  
puts "result is: #{result}, Type is:#{result.class}"  
#>>result is: hello world, Type is:String 


world = "world"  
result = %q{hello #{world}}  
puts "result is: #{result}, Type is:#{result.class}" 
#>>result is: hello #{world}, Type is:String 

 

    %r{String} 用于创建一个正则表达式字面值 

result = %r{world}  
puts result =~ "hello world"  
puts "result is: #{result}, Type is:#{result.class}"  

#>>6 
#>>result is: (?-mix:world), Type is:Regexp 

 

    %w{String} 用于将一个字符串以空白字符切分成一个字符串数组,进行较少替换 
    %W{String} 用于将一个字符串以空白字符切分成一个字符串数组,进行较多替换 

result = %w{hello world}  
puts "result is: #{result}, Type is:#{result.class}, length is:#{result.length}"

#>>result is: helloworld, Type is:Array, length is:2 

 

    %s{String} 用于生成一个符号对象 

result = %s{hello world}  
puts "result is: #{result}, Type is:#{result.class}"  
sym = :"hello world"  
puts "the two symbol is the same: #{sym == result}" 

#>>result is: hello world, Type is:Symbol 
#>>the two symbol is the same: true 

 

    %x{String} 用于执行String所代表的命令 

    比如: %x{notepad.exe}可以启动windows下的记事本

    PS:上面几个%表示法中用{}扩住了String,其实这个{}只是一种分割符,可以换成别的字符,比如(),那么%表示法就是%(String),当然还可以是别的字符,对于非括号类型的分割符,左右两边要相同,如%!String! 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
RubyIDE发布时间:2022-07-14
下一篇:
ruby中Hash排序发布时间:2022-07-14
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap