Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm watching a RailsCast on polymorphic associations. http://railscasts.com/episodes/154-polymorphic-association?view=asciicast

There's three different models Article, Photo and Event that each take a comment from Comment.rb. (Article, Photo and Event each of a article_id, photo_id, and event_id). In listing the comments he has the problem of figuring out which of the 3 models to list the comments for, so he does this in the index action

 def index
      @commentable = find_commentable
      @comments = @commentable.comments
    end


    def find_commentable
      params.each do |name, value|
        if name =~ /(.+)_id$/
          return $1.classify.constantize.find(value)
        end
      end
      nil
    end

My question is, what is $1?

share|improve this question

2 Answers

up vote 3 down vote accepted

According to this answer to $1 and \1 in Ruby:

$1 is a global variable which can be used in later code:

if "foobar" =~ /foo(.*)/ then 
   puts "The matching word was #{$1}"
end

(prints "The matching word was bar")

share|improve this answer
2  
A silly carry-over from Perl ;-) – user166390 Feb 25 '12 at 4:22

The $1 is group matched from the regular expression above /(.+)_id$/. The $1 variable is the string recognized in the parenthesis.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.