我正在解决http://www.rubeque.com/problems/a-man-comma--a-plan-comma--a-canal--panama-excl-/solutions但我对治疗有点困惑#{} 作为正则表达式中的注释。我的代码现在看起来像这样
def longest_palindrome(txt)
txt[/#{txt.reverse}/]
end
我试过了txt[/"#{txt.reverse}"/]
,txt[#{txt.reverse}]
但没有任何效果如我所愿。我应该如何将变量暗示到正则表达式中?