- 浏览: 299606 次
- 性别:
- 来自: 武汉
文章分类
最新评论
-
masuweng:
如何给新人机会 -
masuweng:
多sql结果集按列合并新结果报表实现方案 -
Ahe:
赞
坚持长跑方能赢 -
masuweng:
好好好
程序员如何更好的了解自己所做的事情 -
小楠人:
laoguan123 写道楼主好,使用过一些excel导入导出 ...
excell导入导出
[转帖]ruby的字符串
原文:http://fujinbing.iteye.com/blog/1126332
%{String} 用于创建一个使用双引号括起来的字符串
%Q{String} 用于创建一个使用双引号括起来的字符串
str=<<END_OF_STRING
a string
END_OF_STRING
%Q!Some String of “Characters”! <==> ” Some String of /”Characters/” “
%q{String} 用于创建一个使用单引号括起来的字符串
%q!Some String of “Characters”! <==> ‘Some String of Characters’
%r{String} 用于创建一个正则表达式字面值
%r{/usr/bin/} <==> ///usr//bin///
%w{String} 用于将一个字符串以空白字符切分成一个字符串数组,进行较少替换
%W{String} 用于将一个字符串以空白字符切分成一个字符串数组,进行较多替换
%W(North South East West) <==> ["North", "South", "East", "West"]
%s{String} 用于生成一个符号对象
%x{String} 用于执行String所代表的命令
%x{ ls /usr/local } <==> `ls /usr/local`
PS:上面几个%表示法中用{}扩住了String,其实这个{} 只是一种分割符,可以换成别的字符,比如(),那么%表示法就是%(String),当然还可以是别的字符,对于非括号类型的分割符,左右两边要相同, 如%!String!
下面我对这些表示法简单举几个例子:
%{String}用于创建一个使用双引号括起来的字符串
这个表示法与%Q{String}完全一样,这边直接句个例子看结果:
1. result = %{hello}
2. puts "result is: #{result}, Type is:#{result.class}"
结果: result is: hello, Type is:String
%Q{String}用于创建一个使用双引号括起来的字符串
%q{String}用于创建一个使用单引号括起来的字符串
从说明中可以看出这两个表示法的区别就是一个使用双引号,一个使用单引号。使用双引号的字符串会对字符串中的变量做较多替换,而单引号则做较少的替换,具 体看例子。先看%Q{String}:
1. world = "world"
2. result = %Q{hello #{world}}
3. puts "result is: #{result}, Type is:#{result.class}"
结果: result is: hello world, Type is:String
换成%q{String}:
1. world = "world"
2. result = %q{hello #{world}}
3. puts "result is: #{result}, Type is:#{result.class}"
结果:
result is: hello #{world}, Type is:String
从上面的结果可以看出,较少替换的情况下,#{world}被解析成了字符串,而不会去计算这个变量中的值。
%r{String}用于创建一个正则表达式字面值
就像使用/reg/方式一样,看代码:
1. result = %r{world}
2. puts result =~ "hello world"
3. puts "result is: #{result}, Type is:#{result.class}"
结果: 6
result is: (?-mix:world), Type is:Regexp
可以看出,world从第6个字符开始匹配
%w{String}用于将一个字符串以空白字符切分成一个字符串数组,进行较少替换
%W{String}用于将一个字符串以空白字符切分成一个字符串数组,进行较多替换
这两个应该是大家见过最多的,用这个方式构造数组,可以省下一些逗号,Ruby真 是会惯坏大家,以后大家都不用标点符号了。
同样给一个简单的例子:
1. result = %w{hello world}
2. puts "result is: #{result}, Type is:#{result.class}, length is:#{result.length}"
结果: result is: helloworld, Type is:Array, length is:2
%s{String}用于生成一个符号对象
直接先上代码:
1. result = %s{hello world}
2. puts "result is: #{result}, Type is:#{result.class}"
3. sym = :"hello world"
4. puts "the two symbol is the same: #{sym == result}"
结果:
result is: hello world, Type is:Symbol
the two symbol is the same: true
可以看出,这两中方式生成的symbol对象完全一样
%x{String}用于执行String所代表的命令
比如:
%x{notepad.exe}可以启动windows下的记事本,这里我就不列结果了(那是一个大家熟悉的窗口)
Ruby字符串处理函数总结列表
1.返回字符串的长度
str.length => integer
2.判断字符串中是否包含另一个串
str.include? other_str => true or false
"hello".include? "lo"
#=> true
"hello".include? "ol"
#=> false
"hello".include? ?h
#=> true
3.字符串插入:
str.insert(index, other_str)=> str
"abcd".insert(0, 'X')
#=> "Xabcd"
"abcd".insert(3, 'X')
#=> "abcXd"
"abcd".insert(4, 'X')
#=> "abcdX"
"abcd".insert(-3, 'X')
-3, 'X')
#=> "abXcd"
"abcd".insert(-1, 'X')
#=> "abcdX"
4.字符串分隔,默认分隔符为空格
str.split(pattern=$;, [limit]) => anArray
" now's the time".split
#=> ["now's", "the", "time"]
"1, 2.34,56, 7".split(%r{,\s*})
#=> ["1", "2.34", "56", "7"]
"hello".split(//)
#=> ["h", "e", "l", "l", "o"]
"hello".split(//, 3)
#=> ["h", "e", "llo"]
"hi mom".split(%r{\s*})
#=> ["h", "i", "m", "o", "m"]
"mellow yellow".split("ello")
#=> ["m", "w y", "w"]
"1,2,,3,4,,".split(',')
#=> ["1", "2", "", "3", "4"]
"1,2,,3,4,,".split(',', 4)
#=> ["1", "2", "", "3,4,,"]
5.字符串替换
str.gsub(pattern, replacement)=> new_str
str.gsub(pattern) {|match| block }
=> new_str
"hello".gsub(/[aeiou]/, '*')
#=> "h*ll*" #将元音替换成*号
"hello".gsub(/([aeiou])/, '<\1>')
#=> "hll" #将元音加上尖括号,\1表示保留原有字符???
"hello".gsub(/./) {|s| s[0].to_s + ' '}
#=> "104 101 108 108 111 "
字符串替换二:
str.replace(other_str)=> str
s = "hello"
#=> "hello"
s.replace "world"
#=> "world" Ruby
6.字符串删除:
str.delete([other_str]+) => new_str
"hello".delete "l","lo"
#=> "heo"
"hello".delete "lo"
#=> "he"
"hello".delete "aeiou", "^e"
#=> "hell"
"hello".delete "ej-m"
#=> "ho"
7.去掉前和后的空格
str.lstrip => new_str
" hello ".lstrip
#=> "hello "
"hello".lstrip
#=> " hello "
"hello".lstrip.rstrip
#=> "hello"
8.字符串匹配
str.match(pattern)=> matchdata or nil
9.字符串反转
str.reverse => new_str
"stressed".reverse
#=> "desserts"
10.去掉重复的字符
str.squeeze([other_str]*) => new_str
"yellow moon".squeeze
#=> "yelow mon" #默认去掉串中所有重复的字符
" now is the".squeeze(" ")
#=> " now is the" #去掉串中重复的空格
"putters shoot balls".squeeze("m-z")
#=> "puters shot balls" #去掉指定范围内的重复字符
11.转化成数字
str.to_i=> str
"12345".to_i
#=> 12345
chomp和chop的区别:
chomp:去掉字符串末尾的\n或\r
chop:去掉字符串末尾的最后一个字符,不管是\n\r还是普通字符
"hello".chomp
#=> "hello"
"hello\n".chomp
#=> "hello"
"hello\r\n".chomp
#=> "hello"
"hello\n\r".chomp
#=> "hello\n"
"hello\r".chomp
#=> "hello"
"hello".chomp("llo")
#=> "he"
"string\r\n".chop
#=> "string"
"string\n\r".chop
#=> "string\n"
"string\n".chop
#=> "string"
"string".chop
#=> "strin"
ruby 取子串:
aa = "happy"
aa[0,1] 为'h' ,取子串。
原文:http://fujinbing.iteye.com/blog/1126332
%{String} 用于创建一个使用双引号括起来的字符串
%Q{String} 用于创建一个使用双引号括起来的字符串
str=<<END_OF_STRING
a string
END_OF_STRING
%Q!Some String of “Characters”! <==> ” Some String of /”Characters/” “
%q{String} 用于创建一个使用单引号括起来的字符串
%q!Some String of “Characters”! <==> ‘Some String of Characters’
%r{String} 用于创建一个正则表达式字面值
%r{/usr/bin/} <==> ///usr//bin///
%w{String} 用于将一个字符串以空白字符切分成一个字符串数组,进行较少替换
%W{String} 用于将一个字符串以空白字符切分成一个字符串数组,进行较多替换
%W(North South East West) <==> ["North", "South", "East", "West"]
%s{String} 用于生成一个符号对象
%x{String} 用于执行String所代表的命令
%x{ ls /usr/local } <==> `ls /usr/local`
PS:上面几个%表示法中用{}扩住了String,其实这个{} 只是一种分割符,可以换成别的字符,比如(),那么%表示法就是%(String),当然还可以是别的字符,对于非括号类型的分割符,左右两边要相同, 如%!String!
下面我对这些表示法简单举几个例子:
%{String}用于创建一个使用双引号括起来的字符串
这个表示法与%Q{String}完全一样,这边直接句个例子看结果:
1. result = %{hello}
2. puts "result is: #{result}, Type is:#{result.class}"
结果: result is: hello, Type is:String
%Q{String}用于创建一个使用双引号括起来的字符串
%q{String}用于创建一个使用单引号括起来的字符串
从说明中可以看出这两个表示法的区别就是一个使用双引号,一个使用单引号。使用双引号的字符串会对字符串中的变量做较多替换,而单引号则做较少的替换,具 体看例子。先看%Q{String}:
1. world = "world"
2. result = %Q{hello #{world}}
3. puts "result is: #{result}, Type is:#{result.class}"
结果: result is: hello world, Type is:String
换成%q{String}:
1. world = "world"
2. result = %q{hello #{world}}
3. puts "result is: #{result}, Type is:#{result.class}"
结果:
result is: hello #{world}, Type is:String
从上面的结果可以看出,较少替换的情况下,#{world}被解析成了字符串,而不会去计算这个变量中的值。
%r{String}用于创建一个正则表达式字面值
就像使用/reg/方式一样,看代码:
1. result = %r{world}
2. puts result =~ "hello world"
3. puts "result is: #{result}, Type is:#{result.class}"
结果: 6
result is: (?-mix:world), Type is:Regexp
可以看出,world从第6个字符开始匹配
%w{String}用于将一个字符串以空白字符切分成一个字符串数组,进行较少替换
%W{String}用于将一个字符串以空白字符切分成一个字符串数组,进行较多替换
这两个应该是大家见过最多的,用这个方式构造数组,可以省下一些逗号,Ruby真 是会惯坏大家,以后大家都不用标点符号了。
同样给一个简单的例子:
1. result = %w{hello world}
2. puts "result is: #{result}, Type is:#{result.class}, length is:#{result.length}"
结果: result is: helloworld, Type is:Array, length is:2
%s{String}用于生成一个符号对象
直接先上代码:
1. result = %s{hello world}
2. puts "result is: #{result}, Type is:#{result.class}"
3. sym = :"hello world"
4. puts "the two symbol is the same: #{sym == result}"
结果:
result is: hello world, Type is:Symbol
the two symbol is the same: true
可以看出,这两中方式生成的symbol对象完全一样
%x{String}用于执行String所代表的命令
比如:
%x{notepad.exe}可以启动windows下的记事本,这里我就不列结果了(那是一个大家熟悉的窗口)
Ruby字符串处理函数总结列表
1.返回字符串的长度
str.length => integer
2.判断字符串中是否包含另一个串
str.include? other_str => true or false
"hello".include? "lo"
#=> true
"hello".include? "ol"
#=> false
"hello".include? ?h
#=> true
3.字符串插入:
str.insert(index, other_str)=> str
"abcd".insert(0, 'X')
#=> "Xabcd"
"abcd".insert(3, 'X')
#=> "abcXd"
"abcd".insert(4, 'X')
#=> "abcdX"
"abcd".insert(-3, 'X')
-3, 'X')
#=> "abXcd"
"abcd".insert(-1, 'X')
#=> "abcdX"
4.字符串分隔,默认分隔符为空格
str.split(pattern=$;, [limit]) => anArray
" now's the time".split
#=> ["now's", "the", "time"]
"1, 2.34,56, 7".split(%r{,\s*})
#=> ["1", "2.34", "56", "7"]
"hello".split(//)
#=> ["h", "e", "l", "l", "o"]
"hello".split(//, 3)
#=> ["h", "e", "llo"]
"hi mom".split(%r{\s*})
#=> ["h", "i", "m", "o", "m"]
"mellow yellow".split("ello")
#=> ["m", "w y", "w"]
"1,2,,3,4,,".split(',')
#=> ["1", "2", "", "3", "4"]
"1,2,,3,4,,".split(',', 4)
#=> ["1", "2", "", "3,4,,"]
5.字符串替换
str.gsub(pattern, replacement)=> new_str
str.gsub(pattern) {|match| block }
=> new_str
"hello".gsub(/[aeiou]/, '*')
#=> "h*ll*" #将元音替换成*号
"hello".gsub(/([aeiou])/, '<\1>')
#=> "hll" #将元音加上尖括号,\1表示保留原有字符???
"hello".gsub(/./) {|s| s[0].to_s + ' '}
#=> "104 101 108 108 111 "
字符串替换二:
str.replace(other_str)=> str
s = "hello"
#=> "hello"
s.replace "world"
#=> "world" Ruby
6.字符串删除:
str.delete([other_str]+) => new_str
"hello".delete "l","lo"
#=> "heo"
"hello".delete "lo"
#=> "he"
"hello".delete "aeiou", "^e"
#=> "hell"
"hello".delete "ej-m"
#=> "ho"
7.去掉前和后的空格
str.lstrip => new_str
" hello ".lstrip
#=> "hello "
"hello".lstrip
#=> " hello "
"hello".lstrip.rstrip
#=> "hello"
8.字符串匹配
str.match(pattern)=> matchdata or nil
9.字符串反转
str.reverse => new_str
"stressed".reverse
#=> "desserts"
10.去掉重复的字符
str.squeeze([other_str]*) => new_str
"yellow moon".squeeze
#=> "yelow mon" #默认去掉串中所有重复的字符
" now is the".squeeze(" ")
#=> " now is the" #去掉串中重复的空格
"putters shoot balls".squeeze("m-z")
#=> "puters shot balls" #去掉指定范围内的重复字符
11.转化成数字
str.to_i=> str
"12345".to_i
#=> 12345
chomp和chop的区别:
chomp:去掉字符串末尾的\n或\r
chop:去掉字符串末尾的最后一个字符,不管是\n\r还是普通字符
"hello".chomp
#=> "hello"
"hello\n".chomp
#=> "hello"
"hello\r\n".chomp
#=> "hello"
"hello\n\r".chomp
#=> "hello\n"
"hello\r".chomp
#=> "hello"
"hello".chomp("llo")
#=> "he"
"string\r\n".chop
#=> "string"
"string\n\r".chop
#=> "string\n"
"string\n".chop
#=> "string"
"string".chop
#=> "strin"
ruby 取子串:
aa = "happy"
aa[0,1] 为'h' ,取子串。
发表评论
-
git仓库创建
2020-09-04 15:33 705推送现有文件夹 cd existing_folder git ... -
puma高并发
2020-08-19 09:31 470nginx突发大量502报错 top看一下,cpu的占用并不高 ... -
searchkick
2019-04-10 11:30 0# 通用查询块(条件) def general_ ... -
导入线下excell业务数据按权重匹配线上数据
2019-03-07 11:00 880业务场景:(系统间还没有接口对调,订单号暂时需要线下处理) 线 ... -
两对象同时映射一对一和一对多
2019-02-20 10:14 830class Kpi::Team < Applicat ... -
ruby一些类加载方式
2018-12-21 10:12 563require_dependency 'order/sco ... -
基于ruby的gem remotipart的异步上传文件
2018-12-21 10:11 530针对某一对象保存实例化之前,异步上传图片保存。 gem ' ... -
基于html2canvas的长图分享
2018-12-21 10:11 1155<span class="ui label ... -
rails处理上传读取excell&生成excell
2018-12-20 14:15 959gem 'spreadsheet' gem 'roo', ... -
基于ruby Mechanize的爬虫
2018-12-20 13:09 662def self.sang_carwler ... -
一些常用加密方式
2018-12-20 13:02 728sign = OpenSSL::Digest::SHA256. ... -
ruby 调用restful接口示例
2018-12-20 12:02 922链接参数中添加token def self.query_p ... -
rails错误日志记录
2018-12-19 14:41 754Rails中对日志的处理采用的是“消息-订阅”机制,各部分组件 ... -
railsAPI接收Base64文件
2018-12-18 11:05 1031tmp_dir = " ... -
ruby 调用savon接口示例
2018-12-18 10:51 1010例子一 module Api module Aob ... -
关于国际商城现货展示与购物车的费用设计
2018-11-15 18:34 436关于国际商城现货展示 ... -
基于多线程的全局变量
2018-10-31 19:50 1155def current_nation def ... -
hash最小值过滤算法
2018-10-31 09:52 1084[["数量","包装" ... -
阿里云裸机部署rails运用
2018-10-08 20:33 1379登录阿里云后首先 sudo apt-get update a ... -
打包订单单据发给货代
2018-09-11 15:43 1178pdf&excell&png # rend ...
相关推荐
标题中的“论坛转帖工具.rar”表明这是一个用于在论坛之间转移帖子的软件工具,通常用于帮助用户方便地将一个论坛的帖子内容复制到另一个论坛,可能是为了分享信息、讨论或保存重要的帖子。这类工具可能包括自动抓取...
UBB论坛转帖圣手.exeUBB论坛转帖圣手.exe
- 使用Actual Search and Replace,将源代码中所有与"cheatengine"相关的字符串替换为其他无关联的字符串,确保生成的文件标题不再包含"cheatengine"。 - 在Delphi7中打开CE的源代码工程,编译生成新的EXE文件。 ...
本篇文章将详细探讨“编辑人员转帖去水印工具”,并介绍如何使用名为Teorex Inpaint的1.0.0.2版本的软件来实现这一目标。 首先,我们要理解什么是水印。水印通常是指在图像或视频中添加的半透明标记,它可以是文字...
还有一个是以空格分隔的字符串倒序输出,比如:I am a student,输出结果为:student a am I.字符串的操作相对还是比较熟一点。还让写了两个函数,分别是动态实现二维数组,以及如何释放二维数组,记得当时在大学的...
X2转帖工具、采集工具”是针对这个平台设计的辅助软件,主要用于帮助论坛管理员或用户批量发布帖子和采集内容,提高论坛内容更新的效率。 一、批量发帖功能 1. 自动化发布:此工具可以自动化地创建和发布帖子,...
【贴吧转帖工具】是一种专为百度贴吧用户设计的便捷工具,主要用于提高用户在贴吧中的互动效率。通过这款工具,用户可以实现一键转帖和一键8经验签到的功能,极大地简化了传统操作流程,节省了用户的时间,提升了...
1.修改自Convert X转帖工具 2.新增批量替换关键词(原来是单个词语替换,可以利用这个功能删除一些网站的防转帖代码) 3.批量随机新增文字(新增内容可自定义,从而实现伪原创) 4.cookie记录替换和新增关键词(避免每次...
"转帖工具插件 for PHPwind 7.5 正式版" 是专门为 PHPwind 7.5 版本设计的一个功能插件,旨在提供便捷的帖子转移功能,帮助管理员或者用户将内容从一个地方轻松移动到另一个地方,而无需直接编辑论坛的原始文件。...
标题和描述中的“世界编程大赛第一名写的程序”这一知识点,实际上指向了计算机科学与编程竞赛领域的一个重要概念:即在高水平的编程比赛中,优胜者所编写的代码往往蕴含着高级算法、数据结构以及编程技巧。...
1. 要获取网页源代码,可以使用WebView的`evaluateJavascript()`方法,该方法允许在JavaScript环境中执行代码,并将结果作为字符串返回。可以编写一个JavaScript函数来获取页面的HTML内容: ```javascript function...
一个自己写的小工具,可以将C/C++代码进行转换,以方便在QQ空间里转帖程序代码。 ... 预览模块用的是codeguru里Anonytmouse的动态库,在此表示感谢。...有一些小的bug没有完善,目前只是高亮关键字、字符串、和注释。
《一键转帖功能插件 for 帝国CMS 6.0 GBK utf8 V1.0》 本文将深入探讨“一键转帖功能插件”在帝国CMS 6.0系统中的应用与实现,该插件适用于GBK及UTF-8编码环境,旨在提升网站内容的分享与传播效率。我们将从安装...
转帖图片提取工具可以对论坛图片附件信息进行清除,只保留图片代码,操作很简单,推荐有需要转帖图片工具的朋友下载 转帖图片提取工具使用方法: 将IP138上处理过的东西复制到上方的编辑框内,点击只要图片,下面...
HTML2UBBMaxcj 是一款专为Softii论坛设计的转帖工具,它主要用于将HTML格式的帖子内容转换成UBB代码,以便在论坛中更好地显示和分享。UBB(Universal BBCode)是一种轻量级的标记语言,常用于网络论坛,与HTML类似,...
"一键转帖功能插件 for 帝国CMS v1.0.rar" 是一个专为帝国CMS设计的扩展工具,其主要目标是简化用户在网站上分享内容的过程,提高用户体验。这个插件允许用户轻松地将网站上的文章或信息复制并转发到其他平台,如...
3. **动态获取版本名称**: 如果将`versionName`设置为字符串资源,如`android:versionName="@string/app_versionName"`,则可以通过`getResources().getText(R.string.app_versionName).toString()`来获取。...
对于不能直接复制的富媒体内容,如图片中的文字,可以使用OCR(光学字符识别)软件或在线服务,将图片转换为可编辑的文字。 总的来说,尽管许多网站设有复制限制,但通过各种技术手段和工具,用户仍然能够获取和...
看到论坛里帖子由精美的图片想转过来,或者批量提取地址时很好用