是否有任何现成的函数转换驼峰大小写字符串为下划线分隔字符串?
我想要这样的东西:
"CamelCaseString".to_underscore
返回“camel_case_string”。
...
是否有任何现成的函数转换驼峰大小写字符串为下划线分隔字符串?
我想要这样的东西:
"CamelCaseString".to_underscore
返回“camel_case_string”。
...
当前回答
我想要这样:
class String
# \n returns the capture group of "n" index
def snakize
self.gsub(/::/, '/')
.gsub(/([a-z\d])([A-Z])/, "\1_\2")
.downcase
end
# or
def snakize
self.gsub(/::/, '/')
.gsub(/([a-z\d])([A-Z])/) do
"#{$1}_#{$2}"
end
.downcase
end
end
猴子补丁的字符串类。有些类以两个或多个大写字母开头。
其他回答
Rails的ActiveSupport这样 使用以下方法向字符串中添加下划线:
class String
def underscore
self.gsub(/::/, '/').
gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').
gsub(/([a-z\d])([A-Z])/,'\1_\2').
tr("-", "_").
downcase
end
end
然后你可以做一些有趣的事情:
"CamelCase".underscore
=> "camel_case"
下面是Rails是如何做到的:
def underscore(camel_cased_word)
camel_cased_word.to_s.gsub(/::/, '/').
gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').
gsub(/([a-z\d])([A-Z])/,'\1_\2').
tr("-", "_").
downcase
end
一行Ruby实现:
class String
# ruby mutation methods have the expectation to return self if a mutation occurred, nil otherwise. (see http://www.ruby-doc.org/core-1.9.3/String.html#method-i-gsub-21)
def to_underscore!
gsub!(/(.)([A-Z])/,'\1_\2')
downcase!
end
def to_underscore
dup.tap { |s| s.to_underscore! }
end
end
所以“SomeCamelCase”。To_underscore # =>"some_camel_case"
接收器转换为蛇案:http://rubydoc.info/gems/extlib/0.9.15/String#snake_case-instance_method
这是DataMapper和Merb的支持库。(http://rubygems.org/gems/extlib)
def snake_case
return downcase if match(/\A[A-Z]+\z/)
gsub(/([A-Z]+)([A-Z][a-z])/, '\1_\2').
gsub(/([a-z])([A-Z])/, '\1_\2').
downcase
end
"FooBar".snake_case #=> "foo_bar"
"HeadlineCNNNews".snake_case #=> "headline_cnn_news"
"CNN".snake_case #=> "cnn"
我有麻烦运行“CamelCaseString”。在rake任务中使用下划线。这帮助了我:
ActiveSupport::Inflector.underscore "CamelCaseString"
=> "camel_case_string"
当然,您需要使用ActiveSupport