String concatenation but with a minor twist

How do I do this?

<%= link_to 'Comments (post.comments.count)', {:action =>
'show', :id => post, :anchor => 'comments'}, :class => 'comments' %>

If you have a string delimited with double quotes (or equivalent) you
can embed bits of ruby with #{}, for example "Hello #{person.name}"

Fred