博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ruby的字符串
阅读量:6316 次
发布时间:2019-06-22

本文共 499 字,大约阅读时间需要 1 分钟。

类似于C,一般用'\'作为转义字符

如'escape using "\\"'  将显示  escape using "\"

   'That\'s right'  显示 That's right

 

#{expr}序列把任何Ruby代码的值放入字符串中

"Seconds/day: #{24*60*60}" 得到  Seconds/day: 86400

"#{'Ho!   '*3'}Merry Christmas!" 得到  "Ho! Ho! Ho! Merry Christmas!" 

"This is line #$."  得到  This is line 3

 

进行插入替换的可以是一条或多条语句,如:

irb(main):007:0> puts "now is #{def the(a)

irb(main):008:0"     'the '+a
irb(main):009:0"    end
irb(main):010:0"     the('time')
irb(main):011:0"   }for all good..."
now is the timefor all good...
=> nil
irb(main):012:0>

转载地址:http://lrkaa.baihongyu.com/

你可能感兴趣的文章
解决"安装文件有挂起的文件,请重启电脑"的通用解决方法
查看>>
Python3 日期和时间
查看>>
$('#checkbox').attr('checked'); 返回undefined解决办法
查看>>
Ubuntu 目录名改成英文
查看>>
列出数字1~10=11的所有组合
查看>>
2013年24周信息安全汇总(6.9 - 6.15)
查看>>
武汉同济OA项目一期验收
查看>>
PDFlib是一个用于创建PDF文档的开发工具
查看>>
DTCC2014:珠联璧合:当大数据联姻数据仓库后
查看>>
NSIS 的 Modern UI 教程
查看>>
ASP.NET格式化日期字符串
查看>>
bash-support 插件
查看>>
vnc 安装
查看>>
WTForms介绍
查看>>
构建性能优越、安全的Web服务器
查看>>
keyboard scan code 表
查看>>
防止表单重复提交的几种策略
查看>>
获取json格式字符串 的长度
查看>>
tomcat 漏洞解决方案
查看>>
Loadrunner 性能测试服务器监控指标
查看>>