복붙노트

[RUBY-ON-RAILS] 루비에 밑줄 경우에 카멜 케이스로 변환

RUBY-ON-RAILS

루비에 밑줄 경우에 카멜 케이스로 변환

밑줄로 낙타의 경우 문자열을 문자열을 분리 변환 어떤 준비 기능이 있습니까?

나는 이런 식으로 뭔가를 원하는 :

"CamelCaseString".to_underscore      

"camel_case_string"를 반환합니다.

...

해결법

  1. ==============================

    1.레일 'ActiveSupport 다음을 사용하여 문자열에 밑줄을 추가합니다 :

    레일 '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"
    
  2. ==============================

    2.당신이 사용할 수있는

    당신이 사용할 수있는

    "CamelCasedName".tableize.singularize
    

    아니면 그냥

    "CamelCasedName".underscore
    

    두 옵션의 방법 "camel_cased_name"을 얻을 것입니다. 여기에서 자세한 내용을 확인할 수 있습니다.

  3. ==============================

    3.한 - 라이너 루비 구현 :

    한 - 라이너 루비 구현 :

    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"

  4. ==============================

    4.A는이 목적을 위해 사용할 수있는 '밑줄'라는 붙박이 방법 레일이있다

    A는이 목적을 위해 사용할 수있는 '밑줄'라는 붙박이 방법 레일이있다

    "CamelCaseString".underscore #=> "camel_case_string" 
    

    '밑줄'방법은 일반적으로 'camelize'의 역수로 간주 될 수있다

  5. ==============================

    5.여기에 레일이 그것을 수행하는 방법은 다음과 같습니다

    여기에 레일이 그것을 수행하는 방법은 다음과 같습니다

       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
    
  6. ==============================

    6.수신기는 뱀 케이스로 변환 : http://rubydoc.info/gems/extlib/0.9.15/String#snake_case-instance_method

    수신기는 뱀 케이스로 변환 : 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"
    
  7. ==============================

    7.루비 패싯에서 snakecase을 확인

    루비 패싯에서 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
    
  8. ==============================

    8.당신이 공간은 또한 (당신이 작은 시작 - 문자로 해당 증속 단어가있는 경우 제대로 작동하지 않습니다) 포함했다 낙타 케이스에 대한 짧은 하나 라이너 :

    당신이 공간은 또한 (당신이 작은 시작 - 문자로 해당 증속 단어가있는 경우 제대로 작동하지 않습니다) 포함했다 낙타 케이스에 대한 짧은 하나 라이너 :

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

    9.나는 이것을 좋아합니다 :

    나는 이것을 좋아합니다 :

    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 클래스의 원숭이 패치. 대문자에서 두 개 이상의 글자로 시작하는 클래스가 있습니다.

  10. ==============================

    10.그는 공백 문자열에 밑줄을 적용해야 잘 당신이 뭔가를 사용할 수있는 밑줄로 변환하고자 할 때 경우 누군가가 케이스를 찾고

    그는 공백 문자열에 밑줄을 적용해야 잘 당신이 뭔가를 사용할 수있는 밑줄로 변환하고자 할 때 경우 누군가가 케이스를 찾고

    '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
    
  11. from https://stackoverflow.com/questions/1509915/converting-camel-case-to-underscore-case-in-ruby by cc-by-sa and MIT license