我正在解決http://www.rubeque.com/problems/a-man-comma--a-plan-comma--a-canal--panama-excl-/solutions,但我在處理#{}作爲regexp中的評論時感到有點困惑。 我的代碼看起來現在這個樣子Ruby:Rubeque:正則表達式中的變量?
def longest_palindrome(txt)
txt[/#{txt.reverse}/]
end
我試圖txt[/"#{txt.reverse}"/]
或txt[#{txt.reverse}]
但沒有任何工程如我所願。我應該如何將變量與正則表達式相關聯?
你有正確的第一次。 – pguardiario