낙타 문자 문자열을 밑줄로 구분 된 문자열로 변환하는 준비된 기능이 있습니까?
나는 이런 것을 원한다.
"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("- ","_")
(첫째 PARAM에 추가 공간),이 또한 밑줄로 공간을 설정합니다. 또한, 당신이 포함 할 필요조차 없다고 생각 self.
하거나 적어도 루비 1.9.3에서 작동합니다.
require 'active_support/core_ext/string'
당신이 사용할 수있는
"CamelCasedName".tableize.singularize
아니면 그냥
"CamelCasedName".underscore
두 가지 방법으로 모두 산출 "camel_cased_name"
합니다. 자세한 내용은 여기를 참조 하십시오 .
한 줄짜리 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"
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 #=> "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 용 짧은 oneliner (작은 시작 문자가 포함 된 단어가있는 경우 올바르게 작동하지 않음) :
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
클래스의 원숭이 패치 . 대문자로 두 개 이상의 문자로 시작하는 클래스가 있습니다.
"\1_\2"
에 '\1_\2'
그렇지 않으면 당신은 될 겁니다 "came\u0001_\u0002ase"
대신 "camel_case"
루비 2.5의 같은 ... 어쩌면 다른 사람뿐만 아니라.