• linkedu视频
  • 平面设计
  • 电脑入门
  • 操作系统
  • 办公应用
  • 电脑硬件
  • 动画设计
  • 3D设计
  • 网页设计
  • CAD设计
  • 影音处理
  • 数据库
  • 程序设计
  • 认证考试
  • 信息管理
  • 信息安全
菜单
linkedu.com
  • 网页制作
  • 数据库
  • 程序设计
  • 操作系统
  • CMS教程
  • 游戏攻略
  • 脚本语言
  • 平面设计
  • 软件教程
  • 网络安全
  • 电脑知识
  • 服务器
  • 视频教程
  • vbs
  • DOS/BAT
  • hta/htc
  • python
  • perl
  • VBA
  • ColdFusion
  • ruby
  • PowerShell
  • Lua
  • Golang
  • linux shell
您的位置:首页 > 脚本语言 >ruby > Ruby中的字符串编写示例

Ruby中的字符串编写示例

作者:goldensun 字体:[增加 减小] 来源:互联网

goldensun 通过本文主要向大家介绍了ruby字符串,ruby 字符串转数组,ruby 字符串截取,ruby 字符串拼接,ruby 字符串替换等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com

优先使用 字符串插值 来代替 字符串串联。

  # bad
  email_with_name = user.name + ' <' + user.email + '>'

  # good
  email_with_name = "#{user.name} <#{user.email}>"

  # good
  email_with_name = format('%s <%s>', user.name, user.email)

</div>

    Consider padding string interpolation code with space. It more clearly sets the
    code apart from the string.考虑使用空格填充字符串插值。它更明确了除字符串的插值来源。

  "#{ user.last_name }, #{ user.first_name }"

</div>

    Consider padding string interpolation code with space. It more clearly sets the
    code apart from the string.
    考虑替字符串插值留白。這使插值在字符串里看起來更清楚。

  "#{ user.last_name }, #{ user.first_name }"

</div>

    采用一致的字符串字面量引用风格。这里有在社区里面受欢迎的两种风格,它们都被认为非常好 -
    默认使用单引号(选项 A)以及双引号风格(选项 B)。

        (Option A) 当你不需要字符串插值或者例如 \t, \n, ' 这样的特殊符号的
        时候优先使用单引号引用。

    # bad
    name = "Bozhidar"

    # good
    name = 'Bozhidar'
</div>

        (Option B) Prefer double-quotes unless your string literal
        contains " or escape characters you want to suppress.
        除非你的字符串字面量包含 " 或者你需要抑制转义字符(escape characters)
        优先使用双引号引用。

    # bad
    name = 'Bozhidar'

    # good
    name = "Bozhidar"

</div>

    第二种风格可以说在 Ruby 社区更受欢迎些。该指南的字符串字面量,无论如何,
    与第一种风格对齐。

    不要使用 ?x 符号字面量语法。从 Ruby 1.9 开始基本上它是多余的,?x 将会被解释为 x (只包括一个字符的字符串)。

  

 # bad
  char = ?c

  # good
  char = 'c'

</div>

    别忘了使用 {} 来围绕被插入字符串的实例与全局变量。

  

 class Person
   attr_reader :first_name, :last_name

   def initialize(first_name, last_name)
    @first_name = first_name
    @last_name = last_name
   end

   # bad - valid, but awkward
   def to_s
    "#@first_name #@last_name"
   end

   # good
   def to_s
    "#{@first_name} #{@last_name}"
   end
  end

  $global = 0
  # bad
  puts "$global = #$global"

  # good
  puts "$global = #{$global}"

</div>

    在对象插值的时候不要使用 Object#to_s,它将会被自动调用。

  # bad
  message = "This is the #{result.to_s}."

  # good
  message = "This is the #{result}."

</div>

    操作较大的字符串时, 避免使用 String#+ 做为替代使用 String#<<。就地级联字符串块总是比 String#+ 更快,它创建了多个字符串对象。

  # good and also fast
  html = ''
  html << '<h1>Page title</h1>'

  paragraphs.each do |paragraph|
   html << "<p>#{paragraph}</p>"
  end

</div>

    When using heredocs for multi-line strings keep in mind the fact
    that they preserve leading whitespace. It's a good practice to
    employ some margin based on which to trim the excessive whitespace.
    heredocs 中的多行文字会保留前缀空白。因此做好如何缩进的规划。这是一个很好的
    做法,采用一定的边幅在此基础上削减过多的空白。

  code = <<-END.gsub(/^\s+\|/, '')
   |def test
   | some_method
   | other_method
   |end
  END
  #=> "def test\n some_method\n other_method\nend\n"

</div>


</div>

您可能想查找下面的文章:

  • Ruby中实现把字符串转换为类的2种方法
  • Ruby中字符串左侧补零方法实例
  • Ruby字符串、条件、循环、数组、Hash、类基本操作笔记
  • Ruby 字符串处理
  • Ruby中的字符串编写示例
  • Ruby中操作字符串的一些基本方法
  • Ruby中常用的字符串处理函数使用实例
  • Ruby中创建字符串的一些技巧小结

相关文章

  • Ruby微信开发的几个开源项目介绍
  • ruby实现网页图片抓取
  • Ruby中区分运行来源的方法
  • Ruby常用文件操作代码实例
  • Ruby常用文件操作方法
  • ruby基本数据类型简明介绍
  • Ruby Gems更换淘宝源方法
  • Ruby中的循环语句的用法教程
  • Ruby最简单的消息服务器代码
  • 详解Ruby中的方法概念

文章分类

  • vbs
  • DOS/BAT
  • hta/htc
  • python
  • perl
  • VBA
  • ColdFusion
  • ruby
  • PowerShell
  • Lua
  • Golang
  • linux shell

最近更新的内容

    • PHP实现的一个保存远程文件到本地的函数分享
    • 实例讲解Ruby中的钩子方法及对方法调用添加钩子
    • 举例理解Ruby on Rails的页面缓存机制
    • ruby 异常处理:ensure
    • ruby 过程对象 解析
    • Ruby设计模式编程中对外观模式的应用实例分析
    • rudy 继承 概念
    • Luhn算法学习及其Ruby版实现代码示例
    • ruby环境中自动编译sass教程
    • Ruby常用文件操作代码实例

关于我们 - 联系我们 - 免责声明 - 网站地图

©2020-2025 All Rights Reserved. linkedu.com 版权所有