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.
次の方法でフォーマットされた文字列のコンテンツを抽出しようとしています。
<script type="text/javascript"> document.viewData = THE INFORMATION I WANT </script> some other stuff
それを実装する方法についてのアイデアはありますか?
前もって感謝します!
require 'nokogiri' doc = Nokogiri::XML::Document.parse <<-_XML_ <script type="text/javascript"> document.viewData = THE INFORMATION I WANT </script> some other stuff _XML_ doc.at('//script').text.strip.split("=").last # => " THE INFORMATION I WANT"