मेरे पास एक पाठ फ़ाइल है जिसे मुझे विशिष्ट डेटा तत्वों को निकालने की आवश्यकता है।
उदाहरण पाठ:
<url>
<loc>https://example.com/example0.html</loc>
<lastmod>2019-01-22</lastmod>
<priority>0.5</priority>
</url>
<url>
<loc>https://example.com/example1.html</loc>
<lastmod>2019-01-21</lastmod>
<priority>0.5</priority>
</url>
<url>
<loc>https://example.com/example2.html</loc>
<lastmod>2019-01-21</lastmod>
<priority>0.5</priority>
</url>
<url>
<loc>https://example.com/example3.html</loc>
<lastmod>2019-01-20</lastmod>
<priority>0.5</priority>
</url>
<url>
<loc>https://example.com/example4.html</loc>
<lastmod>2019-01-20</lastmod>
<priority>0.5</priority>
</url>
मैं निकालना चाहता हूं:
https://example.com/example0.html
https://example.com/example1.html
https://example.com/example2.html
https://example.com/example3.html
https://example.com/example4.html
कृपया ध्यान रखें कि तिथि स्थिर नहीं है
"अर्क" से आपका क्या तात्पर्य है? क्या आप सब कुछ हटाना चाहते हैं लेकिन URL?
—
टोटो