`

Ruby中是如何處理字符串的?

阅读更多
#定义字符串
"abc"

'efg'

 %Q{abc} #等价于 ""

 %{hahaha} #等价于 ""

 %q!efg! #等价于 ''

 %!hello! #等价于 ''


Q:"" 和'' 两者之间的区别?
A:"" 中可以嵌入#{}输出表达式的值,或者是character escapes

str = "abc"

puts "this is #{str}" # this is abc

puts 'this is #{str}' # this is #{str}

puts "abc\nedf" # abc
                # edf

puts 'abc\nefg' # abc\nefg


Q:ruby中字符编码?
Q:在ruby中puts "中國" 出现"invalid multitype char<us-ASCII>"
A:ruby中的source code 默認的編碼是US-ACSII,不能解析中文。需要把源文件的編碼改為“適合”的方式,繁體是
#encoding: Big5


#new
my_name = "tony"

your_name = String.new(my_name)

puts my_name.object_id #5907780

puts your_name.object_id #5907768

your_name[0] = "m"

puts my_name # tony

puts your_name # mony


#String.try_convert

puts "try_convert"

puts String.try_convert("aBC") #aBC

puts String.try_convert(12345) #nil

puts String.try_convert("12345") #12345



# % format string
puts "%"
puts "str % arg -> string"

puts "%05d" % 123 #00123 formatstring = "%flag with precision name fieldtype"

puts "%0b" % 123 #1111011 

puts "%5s: %08x" % ["ID", self.object_id] #   ID: 005af846

puts "%-5s: %08X" % ["ID", self.object_id] #ID   : 005AF846

puts "%-5<name>s : %08<value>X" % {name: "hash_id", value: self.object_id} #hash_id: 005AF86


# * copies
# + concatenation 
# << append  if the object is a Fixnum it is considered to be a codepoint in the encoding
#    of str and converted to the appropriate character before being appended
# concat

puts "Ha" * 3 #HaHaHa

puts "Ha" + "Ho" #HaHo

puts "Hello" << 119 #Hellow

puts "Hello" << "Tony" #HelloTony

puts "concat"

puts "Hello".concat(" Tony") # Hello Tony

str = "hello"

str << 119

puts str << "Tony" #hellowTony


#[] []=
puts "[],[]="

str = "Hello Ruby"

puts str[-1] # y
puts str[0] # H
puts str[1] #e
puts str[9] #y
puts str[10] #nil

puts str[0..2] #hel

puts str[0...2] #he

puts str[0,2] #he

puts str["e"] #e

str[0..2] = 'haha'

puts str # hahalo Ruby


#ascii_only?
puts "ascii_only?"
puts __ENCODING__ #Big5

puts "ruby".ascii_only? #true

str = "中國"
puts str.ascii_only? #false


#bytes, chars, codepoints
#str.bytes -> enum
#str.bytes{|byte| block} -> str
#str.chars -> enum
#str.chars{|char| block}-> str
#codepoints(integers representation of the characters)
#str.codepoints -> enum
#str.codepoints {|integer| block} -> str
#getbyte
puts "bytes, getbyte"
p "ruby".bytes.to_a #[114,117,98,121]

puts "getbyte"
puts "ruby".getbyte(1) #117

result = []

puts "ruby".bytes {|byte| result << byte} #ruby

p result #[114,117,98,121]

puts "chars"

p "ruby".chars.to_a # ["r", "u", "b", "y"]

result = []

puts "ruby".chars {|char| result << char} #ruby 

p result # ["r", "u", "b", "y"]

puts "codepoints"

p "中國".codepoints.to_a # [42148, 45290]

result = []

puts "中國".codepoints {|b| result << b} #中國

p result #[42148, 45290] 



#bytesize, length, size
puts "bytesize, length"

puts "ruby".length #4
puts "ruby".bytesize #4
puts "ruby".size #4

puts "中國".length # 2
puts "中國".bytesize # 4
puts "中國".size #2


#capitalize, capitalize!
#capitalize  return a copy of str with the first character converted to 
#            uppcase and the remainder to lowercase
#capitalize! Modified str by converting the first character to uppercase and the 
#            ramainder to lowercase .Returns nil if no changes are made
puts "capitalize, capitalize! "

str = "hello Ruby"
puts "str = hello Ruby"

puts "str.capitalize = > #{str.capitalize}" #Hello ruby

puts "str = > #{str}" # hello Ruby

puts "str.capitalize! = > #{str.capitalize!}" # Hello Ruby

puts "str = > #{str}" # Hello Ruby

puts "str.capitalize! = > #{str.capitalize!}" # nil

puts "str = > #{str}" # Hello Ruby



#<=>, casecmp
puts "<=> , casecmp"

puts "abc" <=> "Abc" #1

puts "abc".casecmp("Abc") # 0

puts "abc" <=> "ab" #1

puts "abc".casecmp("ab") #1

puts "ab" <=> "abc" #-1

puts "ab".casecmp("abc") #-1



#center
puts "center"

str = "ruby"

puts str.center(4) #ruby

puts str.center(5) #ruby

puts str.center(10, '*') #***ruby***

puts str # ruby


#chr return the first character

puts "chr"

puts "ruby".chr # r

puts "中國".chr # 中


#clear removes the content(but not the associated encoding) of str

puts "clear"

str = "ruby"
puts str.clear #nil

puts str.length #0

#encoding: Big5
puts str.encoding #Big5


#chomp, chomp!
#chomp return new string with given record separator remove from the end of str
#str.chomp(rs = $/) -> string
puts "chomp, chomp!"

str =  "ruby"

p str.chomp # ruby

p str.chomp("y") # rub

str = "ruby\n"

p str.chomp # ruby

str = "ruby\n\r"

p str.chomp # ruby\n

str = "ruby\r\n"

p str.chomp # ruby

str = "ru \n by"
p str.chomp # ru \n by


#chop, chop!
#remove last character

puts "chop"
p "ruby".chop #rub
p "ruby\n".chop # ruby
p "ruby\r\n".chop #ruby
p "R".chop.chop # ""


#count, delete, delete! 
#str.count(<string>+)->int
#Each string parameter difines a set of characters to count.
#the intersection of these sets defines the characters to count in str
#Any parameter that starts with a caret(^) is negated
#The sequence c1-c2 means all characters between c1 and c2
puts "count"

str = "hello world"
puts str.count "lo" #5 在str 中 有 3 個 l 和 兩個 0 => 3 + 2 = 5

puts str.count "el" #4

puts str.count "lo", "o" #2 [l,o],[o]的交集是 0 在str中出現2個

puts str.count "ej-m" # 4 [e,j,k,l,m] 在str 中有 1個 e 3個l 總共 4

puts "delete"
puts str.delete "lo" # he wrd

puts str # hello world

puts str.delete! "e" # hllo world

puts str # hllo world

#crypt 加密
puts "crypt"

puts "ruby".crypt "ruby"


#downcase, downcase!
puts "downcase downcase!"

puts "ABC".downcase #abc


#dump
#Produces a version of str with all nonprinting characters replaced by \nnn notation
#and all special characters escaped
puts "dump"

p "ABC".dump #"\"ABC"\"

p "ABC" #"ABC"


#empty?
puts "empty?"

puts "hello".empty? # false

puts "".empty? #true


#encode, encode!, encoding, force_encoding
puts "encoding"

str = "ruby"

puts str.encoding #GBK

puts str.encode("utf-8") # ruby

puts str.encoding #GBK

puts str.encode!("utf-8") # ruby

puts str.encoding #utf-8

str.force_encoding("GBK")

puts str.encoding  #GBK



#gsub, gsub! 與正則表達式連用搜索字符串

#start_with? end_with?
puts "start_with?, end_with"

puts "Apache".end_with?("ache") # true

puts "ruby code".end_with?("python", "perl", "code") # true

puts "Apache".start_with?("Apa") # true

puts "ruby code".start_with?("python","perl","ruby") #true


#index
puts "index"

puts "hello".index("e") #1

puts "hello".index("a") #nil

puts "hello".index(/[aeiou]/, -3) #4

puts "hello".index("lo",4) #nil 第二參數開始搜索的位置


#insert
puts "insert"

puts "abcd".insert(0,"X") #Xabcd

puts "abcd".insert(-1, "X") #abcdX

puts "abcd".insert(1, "X") #aXbcd

puts "abcd".insert(-2, "X") #abcXd


#intern
#Return the Symbol corresponding to str, creatin the symbol if it did not 
#previously exist
puts "intern"

p "ruby".intern #:ruby
分享到:
评论

相关推荐

    基于微信小程序的在线办公小程序答辩PPT.pptx

    基于微信小程序的在线办公小程序答辩PPT.pptx

    机器学习(预测模型):2000年至2015年期间193个国家的预期寿命和相关健康因素的数据

    这个数据集来自世界卫生组织(WHO),包含了2000年至2015年期间193个国家的预期寿命和相关健康因素的数据。它提供了一个全面的视角,用于分析影响全球人口预期寿命的多种因素。数据集涵盖了从婴儿死亡率、GDP、BMI到免疫接种覆盖率等多个维度,为研究者提供了丰富的信息来探索和预测预期寿命。 该数据集的特点在于其跨国家的比较性,使得研究者能够识别出不同国家之间预期寿命的差异,并分析这些差异背后的原因。数据集包含22个特征列和2938行数据,涉及的变量被分为几个大类:免疫相关因素、死亡因素、经济因素和社会因素。这些数据不仅有助于了解全球健康趋势,还可以辅助制定公共卫生政策和社会福利计划。 数据集的处理包括对缺失值的处理、数据类型转换以及去重等步骤,以确保数据的准确性和可靠性。研究者可以使用这个数据集来探索如教育、健康习惯、生活方式等因素如何影响人们的寿命,以及不同国家的经济发展水平如何与预期寿命相关联。此外,数据集还可以用于预测模型的构建,通过回归分析等统计方法来预测预期寿命。 总的来说,这个数据集是研究全球健康和预期寿命变化的宝贵资源,它不仅提供了历史数据,还为未来的研究和政策制

    基于微信小程序的“健康早知道”微信小程序答辩PPT.pptx

    基于微信小程序的“健康早知道”微信小程序答辩PPT.pptx

    基于微信小程序的电影交流平台答辩PPT.pptx

    基于微信小程序的电影交流平台答辩PPT.pptx

    计算机字符编码GB18030.PDF

    计算机字符编码GB18030

    Hive 操作基础(进阶版)多级分区数据文件2

    Hive 操作基础(进阶版)多级分区数据文件2

    基于java的贫困生管理系统答辩PPT.pptx

    基于java的贫困生管理系统答辩PPT.pptx

    pandas-2.1.4-cp312-cp312-win_amd64.zip

    pandas whl安装包,对应各个python版本和系统(具体看资源名字),找准自己对应的下载即可! 下载后解压出来是已.whl为后缀的安装包,进入终端,直接pip install pandas-xxx.whl即可,非常方便。 再也不用担心pip联网下载网络超时,各种安装不成功的问题。

    TA_Lib轮子无需编译-TA_Lib-0.4.18-cp38-cp38-win32.whl.zip

    TA_lib库(whl轮子),直接pip install安装即可,下载即用,非常方便,各个python版本对应的都有。 使用方法: 1、下载下来解压; 2、确保有python环境,命令行进入终端,cd到whl存放的目录,直接输入pip install TA_lib-xxxx.whl就可以安装,等待安装成功,即可使用! 优点:无需C++环境编译,下载即用,方便

    课设毕设基于SpringBoot+Vue的瑜伽体验课预约系统源码可运行.zip

    本压缩包资源说明,你现在往下拉可以看到压缩包内容目录 我是批量上传的基于SpringBoot+Vue的项目,所以描述都一样;有源码有数据库脚本,系统都是测试过可运行的,看文件名即可区分项目~ |Java|SpringBoot|Vue|前后端分离| 开发语言:Java 框架:SpringBoot,Vue JDK版本:JDK1.8 数据库:MySQL 5.7+(推荐5.7,8.0也可以) 数据库工具:Navicat 开发软件: idea/eclipse(推荐idea) Maven包:Maven3.3.9+ 系统环境:Windows/Mac

    tornado-6.2b2.tar.gz

    tornado-6.2b2.tar.gz

    javawe论坛项目 原生技术

    javawe论坛项目 原生技术

    tornado-6.2b1-cp310-cp310-macosx_10_9_universal2.whl

    tornado-6.2b1-cp310-cp310-macosx_10_9_universal2.whl

    基于司机信用评价的货运管理系统(springboot+vue+mysql+说明文档).zip

    随着物流行业的快速发展,货运管理变得愈发重要。为了提高货运效率,确保货物安全,我们开发了这款基于司机信用评价的货运管理系统。 该系统主要包含了货物信息管理、订单评价管理、货主管理等多个功能模块。在货物信息管理模块中,用户可以查看和管理货物的详细信息,包括货物名称、规格、装车状态、运输状态以及卸货状态等,方便用户随时掌握货物的动态。 订单评价管理模块是该系统的核心之一,它允许货主对司机的服务进行评价,系统会根据评价数据对司机进行信用评分。这一功能不仅有助于提升司机的服务质量,还能为货主提供更加可靠的货运选择。 此外,货主管理模块提供了货主信息的录入、修改和查询等功能,方便用户管理自己的货主资料。系统界面简洁明了,以蓝色为主色调,设计现代且专业,为用户提供了良好的使用体验。 通过该系统,用户可以轻松实现货物信息的查看和管理,对司机的服务进行评价,提高货运效率和服务质量。同时,系统也为司机提供了一个展示自我、提升信用的平台,有助于推动物流行业的健康发展。

    毕业生交流学习平台 SSM毕业设计 附带论文.zip

    毕业生交流学习平台 SSM毕业设计 附带论文 启动教程:https://www.bilibili.com/video/BV1GK1iYyE2B

    基于java的广场舞团答辩PPT.pptx

    基于java的广场舞团答辩PPT.pptx

    基于java的基于SSM的校园音乐平台答辩PPT.pptx

    基于java的基于SSM的校园音乐平台答辩PPT.pptx

    安装包JIRATimeSLA

    Jira插件安装包

    【java毕业设计】基于图像识别与分类的中国蛇类识别系统源码(springboot+vue+mysql+说明文档).zip

    项目经过测试均可完美运行! 环境说明: 开发语言:java jdk:jdk1.8 数据库:mysql 5.7+ 数据库工具:Navicat11+ 管理工具:maven 开发工具:idea/eclipse

    tornado-6.2b2-cp37-abi3-win_amd64.whl

    tornado-6.2b2-cp37-abi3-win_amd64.whl

Global site tag (gtag.js) - Google Analytics