キャメルケース文字列をアンダースコアで区切られた文字列に変換する関数はありますか?
私はこのようなものが欲しい:
"CamelCaseString".to_underscore
「camel_case_string」を返します。
...
キャメルケース文字列をアンダースコアで区切られた文字列に変換する関数はありますか?
私はこのようなものが欲しい:
"CamelCaseString".to_underscore
「camel_case_string」を返します。
...
回答:
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"
tr("-","_")
するとtr("- ","_")
、スペースもアンダースコアに変わります。また、私はあなたがを含める必要さえないと思いますself.
、または少なくともそれはRuby 1.9.3の下で私にとってはうまくいきます。
require 'active_support/core_ext/string'
使用できます
"CamelCasedName".tableize.singularize
あるいは単に
"CamelCasedName".underscore
ワンライナー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"
/([^A-Z])([A-Z]+)/
処理するために、代わりに"ALLCAPS"
- > "allcaps"
の代わりに"a_ll_ca_ps"
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
レシーバーはヘビのケースに変換されました: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"
Ruby Facetsからsnakecaseをチェックしてください
以下に示すように、次のケースが処理されます。
"SnakeCase".snakecase #=> "snake_case"
"Snake-Case".snakecase #=> "snake_case"
"Snake Case".snakecase #=> "snake_case"
"Snake - Case".snakecase #=> "snake_case"
送信元:https : //github.com/rubyworks/facets/blob/master/lib/core/facets/string/snakecase.rb
class String
# Underscore a string such that camelcase, dashes and spaces are
# replaced by underscores. This is the reverse of {#camelcase},
# albeit not an exact inverse.
#
# "SnakeCase".snakecase #=> "snake_case"
# "Snake-Case".snakecase #=> "snake_case"
# "Snake Case".snakecase #=> "snake_case"
# "Snake - Case".snakecase #=> "snake_case"
#
# Note, this method no longer converts `::` to `/`, in that case
# use the {#pathize} method instead.
def snakecase
#gsub(/::/, '/').
gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').
gsub(/([a-z\d])([A-Z])/,'\1_\2').
tr('-', '_').
gsub(/\s/, '_').
gsub(/__+/, '_').
downcase
end
#
alias_method :underscore, :snakecase
# TODO: Add *separators to #snakecase, like camelcase.
end
"Dumb Penguin's Egg".snakecase # => "dumb_penguin's_egg"
スペースも含まれている場合のCamelCasesの短いワンライナー(小さな開始文字の間に単語がある場合は正しく機能しません):
a = "Test String"
a.gsub(' ', '').underscore
=> "test_string"
underscore
ルビーの一部ではない
スペースを含む文字列にアンダースコアを適用する必要があり、それらをアンダースコアに変換したい場合は、次のようなものを使用できます。
'your String will be converted To underscore'.parameterize.underscore
#your_string_will_be_converted_to_underscore
または、単に.parameterize( '_')を使用しますが、これは非推奨であることを覚えておいてください
'your String will be converted To underscore'.parameterize('_')
#your_string_will_be_converted_to_underscore
私はこれが欲しい:
class String
# \n returns the capture group of "n" index
def snikize
self.gsub(/::/, '/')
.gsub(/([a-z\d])([A-Z])/, "\1_\2")
.downcase
end
# or
def snikize
self.gsub(/::/, '/')
.gsub(/([a-z\d])([A-Z])/) do
"#{$1}_#{$2}"
end
.downcase
end
end
String
クラスのモンキーパッチ。2つ以上の大文字で始まるクラスがあります。
"\1_\2"
には'\1_\2'
他のものに変更する必要があります。"came\u0001_\u0002ase"
"camel_case"