私はRubyを初めて使用するので、簡単な質問であれば申し訳ありません。ルビーファイルを開いてすべての定数を検索したいのですが、正しい正規表現がわかりません。
これが私の簡略化されたコードです:
def findconst()
filename = @path_main
k= {}
akonstanten = []
k[:konstanten] = akonstanten
if (File.exists?(filename))
file = open(filename, "r")
while (line = file.gets)
if (line =~ ????)
k[:konstanten] << line
end
end
end
end