类名到类名
我确信这对于极客来说是一件简单的事情:
假设我有一个字符串“ThisIsMyString”,我想使用 Ruby 将其格式化为“this_is_my_string”。
我怎么做?
马特
I'm sure this is an easy one for you geeks:
Say I have a String "ThisIsMyString" and I want to format it like "this_is_my_string" using Ruby.
How do I do that?
Matt
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您有权访问 ActiveSupport(如在 Rails 中,但可在外部使用),您可以使用 Inflector 模块。
If you have access to ActiveSupport (as in Rails, but usable externally) you can use the
underscore
method in the Inflector module.字符串类
def 下划线
(gsub(/[AZ]) { |p| "_" + p.downcase })[1..-1]
结尾
结束
“MyTestCase”.to_under_score => “my_test_case”
来自 http://www.ruby-forum.com/topic/113697# 265696
class String
def to_under_score
(gsub(/[A-Z]) { |p| "_" + p.downcase })[1..-1]
end
end
"MyTestCase".to_under_score => "my_test_case"
From http://www.ruby-forum.com/topic/113697#265696
Ruby Facets 有一个函数可以做到这一点:String#underscore。 这是它的来源:
Ruby Facets has a function to do this: String#underscore. Here's the source of it:
如果您可以从 Rails 项目访问 ActiveSupport,那么就很简单
If you have access to ActiveSupport from the Rails project, it's as simple as