Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
正規表現を使用して変数から値を抽出しています。出力は次の形式になります。
[["\"XXX.YYY\""]]
だから、フラット化を使用すると、次の出力が得られます。
["\"XXX.YYY\""]
これだけを抽出するにはどうすればよいXXX.YYYですか?
XXX.YYY
試す:
a = [["\"XXX.YYY\""]] puts a.flatten[0].gsub('"','')