博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Recipe 1.4. Reversing a String by Words or Characters
阅读量:5060 次
发布时间:2019-06-12

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

ContractedBlock.gif
ExpandedBlockStart.gif
Code
 1 s=".sdrawkcab si gnirts sihT"
 2 puts s.reverse #This string is backwards.
 3 puts s #.sdrawkcab si gnirts sihT
 4 s.reverse!  
 5 puts s #This string is backwards.
 6 
 7 puts "Three little words".split(/\s+/)
 8 #Three
 9 #little
10 #words
11 
12 puts "Three little words".split(/(\s+)/)
13 #Three
14 #
15 #little
16 #
17 #words
Because the regular expression
/(\s+)/ includes a set of parentheses, the separator strings themselves are included in the returned list.

转载于:https://www.cnblogs.com/zhtf2014/archive/2009/09/23/1572937.html

你可能感兴趣的文章
javascript性能优化总结二(转载)
查看>>
软件工程个人作业04-四则运算网页版
查看>>
栈和队列的方法
查看>>
GC模式
查看>>
JavaMail与Spring整合
查看>>
The user specified as a definer ('root'@'%') does not exist 解决方法 权限问题
查看>>
IDEA
查看>>
java基础知识起步
查看>>
Python学习笔记
查看>>
python笔记
查看>>
构建之法--探索篇(二)
查看>>
浅析软件开发的3个层次
查看>>
【1】
查看>>
perl中如何将按hash值排序
查看>>
铁乐学python_Day44_IO多路复用
查看>>
mysql check约束无效
查看>>
自然语言也支持泛型
查看>>
Chart
查看>>
查看版本信息的命令
查看>>
安装 SQLManagementStudio_x86_CHS(SQL Server Management Studio) 老提示重启的解决办法
查看>>