是否有任何现成的函数转换驼峰大小写字符串为下划线分隔字符串?
我想要这样的东西:
"CamelCaseString".to_underscore
返回“camel_case_string”。
...
是否有任何现成的函数转换驼峰大小写字符串为下划线分隔字符串?
我想要这样的东西:
"CamelCaseString".to_underscore
返回“camel_case_string”。
...
当前回答
一行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"
其他回答
一行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"
下面是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
你可以使用
"CamelCasedName".tableize.singularize
或者只是
"CamelCasedName".underscore
这两种方法都会产生“camel_cased_name”。你可以在这里查看更多细节。
我有麻烦运行“CamelCaseString”。在rake任务中使用下划线。这帮助了我:
ActiveSupport::Inflector.underscore "CamelCaseString"
=> "camel_case_string"
当然,您需要使用ActiveSupport
当你有空格的时候,camelcase的简短的一行程序也包括在内(如果你有一个小的开头字母之间的单词,就不能正常工作):
a = "Test String"
a.gsub(' ', '').underscore
=> "test_string"
编辑:正如@dft指出的那样,这个方法不是Ruby的一部分,而是Rails的一部分。