루비에서 낙타 케이스를 밑줄 케이스로 변환


232

낙타 문자 문자열을 밑줄로 구분 된 문자열로 변환하는 준비된 기능이 있습니까?

나는 이런 것을 원한다.

"CamelCaseString".to_underscore      

"camel_case_string"을 반환합니다.

...


43
참고 : 소문자와 밑줄은 "공식적으로"뱀 케이스라고합니다.
Andrew

3
따옴표로 "공식적으로"보는 것이 이상하지만, 그것을 설명하는 가장 좋은 방법입니다.
stevenspiel

어떤 이유로 나는 snakecase 메소드가 누락 된 것을 봅니다. 레일 4.
Abram

답변:


362

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"

5
당신이 변경하는 경우 tr("-","_")tr("- ","_")(첫째 PARAM에 추가 공간),이 또한 밑줄로 공간을 설정합니다. 또한, 당신이 포함 할 필요조차 없다고 생각 self.하거나 적어도 루비 1.9.3에서 작동합니다.
거스 쇼츠

6
require 'active_support/core_ext/string'
konsolebox

밑줄 기능 Active 사용 : github.com/rails/rails/blob/…
GreeKatrina

밑줄은 루비가 아닌 Rails의 방법입니다 ( apidock.com/rails/String/underscore 참조) .
S.Yadav

1
@ S.Yadav true 메소드는 Rails이므로 기본적으로 밑줄을 호출 할 수는 없지만 사용 된 코드를 제공하고 소스로 레일을 인용 함으로써이 답변은 루비에게 좋은 답변입니다. 레일스 팀이 작성하고 테스트 한이 기능을 포함하십시오.
Michael Gorman

99

당신이 사용할 수있는

"CamelCasedName".tableize.singularize

아니면 그냥

"CamelCasedName".underscore

두 가지 방법으로 모두 산출 "camel_cased_name"합니다. 자세한 내용은 여기를 참조 하십시오 .


11
이것은 ActiveSupport :: Inflector 구현의 일부입니다. 그것 없이는 이러한 문자열 확장을 사용할 수 없습니다 (순수 irb 콘솔에서 시도 : "ThisCamelCaseString".underscore, 'active_support / inflector'가 필요하고 다시 시도하십시오)
Evgenia Manolova

3
OP의 레이블은 "루비 온 레일"이라고 말합니다
Julien Lamarche

55

한 줄짜리 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"


2
다른 솔루션은 어떻게 순수한 루비가 아닌가?
jrhicks

오, 쉬 .. 고마워-글쓰기보다는 글쓰기에 더 관심이 많았다. 결과적으로 Rails의 링크는 다른 스 니펫이 Rails 전용이라고 생각했습니다. 답변 변경 ...
kirushik

1
내 편집에 다른 오류가 있으며 수정할 수없는 것 같습니다. 올바른
Tim Harper

6
대신에/([^A-Z])([A-Z]+)/"ALLCAPS""allcaps""a_ll_ca_ps"
Nevir

4
실제로 10 라이너입니다!
kristianp

30

이 목적으로 사용할 수있는 '밑줄'이라는 Rails 내장 메소드가 있습니다.

"CamelCaseString".underscore #=> "camel_case_string" 

'밑줄'방법은 일반적으로 '동기화'의 역으로 ​​간주 될 수 있습니다.


1
"..."에 대한 정의되지 않은 메소드 'underscore': String
Dorian

5
이것은 ActiveSupport 방식입니다
Dorian

20

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

1
핵심 String 클래스를 침범하기보다는 피연산자를 메서드 인수로 사용하는 것이 좋습니다.
Pistos

1
동의하지 마십시오-클래스에서 작동 해야하는 것이 더 낫습니다. 그렇지 않으면 모듈에 모듈을 붙이고 필요할 때마다 포함시켜야합니다.
Ghoti

1
또한이 방법은 어쨌든 Rails 3의 문자열의 일부입니다 :)
Ghoti

2
이 토론에 뛰어들 수 있다면 =)를 포함시킬 문자열 클래스에 침입하는 것이 좋습니다.
Evan Moran


7

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"
khiav reoy

6

공백이 포함 된 경우 CamelCases 용 짧은 oneliner (작은 시작 문자가 포함 된 단어가있는 경우 올바르게 작동하지 않음) :

a = "Test String"
a.gsub(' ', '').underscore

  => "test_string"

1
underscore루비의 일부가 아닌
도막

4

공백이있는 문자열에 밑줄을 적용하고 밑줄로 변환하려는 경우를 찾고있는 사람은 다음과 같이 사용할 수 있습니다

'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

1

나는 이것을 원한다 :

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의 같은 ... 어쩌면 다른 사람뿐만 아니라.
6ft Dan
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.