我試圖使用正則表達式作爲條件內(直到)循環。 基本上,這是用於輸入數字密碼..使用正則表達式作爲條件循環(直到)
我想這個代碼
print "Password: "
x = gets.chomp.to_i
until (/^[\d]+(\.[\d]+){0,1}$/ === "#{x}") == "true"
print "Only numbers allowed, Password: "
x = gets.chomp.to_i
end
但遺憾的是它沒有工作。
任何想法?
我刪除了「[紅寶石]」從標題,這足以讓它的標籤。 –