<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[extract only two columns]]></title><description><![CDATA[<p dir="auto">hello guys, I was reviewing several solutions to have only two groups which are separated by ¡, but I have not succeeded, I need group or column 19 and 20, my file is large, I show you an example,</p>
<p dir="auto">spell-class¡“.instant.ProjectileSpell”¡name¡explosivearrow¡spell-icon¡arrow¡description¡Cause¡an¡explosion¡where¡an¡arrow¡lands¡cast-item¡blaze_rod¡cooldown¡1¡projectile¡arrow¡velocity¡0¡require-hit-entity¡false¡cancel-damage¡true¡remove-projectile¡true¡max-distance¡30¡spells¡[explode]</p>
<p dir="auto">I need these two columns<br />
projectile¡arrow<br />
Can anyone help me?</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/16777/extract-only-two-columns</link><generator>RSS for Node</generator><lastBuildDate>Mon, 20 Jul 2026 00:23:15 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/16777.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 10 Dec 2018 15:40:55 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to extract only two columns on Mon, 10 Dec 2018 16:12:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kellyyer" aria-label="Profile: kellyyer">@<bdi>kellyyer</bdi></a></p>
<p dir="auto">So the comma character is a more-common delimiter than yours, but if you replace every comma in the following with your special delimiter, this should work or at least get you started:</p>
<p dir="auto">Invoke <strong>Replace</strong> (press ctrl+h).<br />
<strong>Find what</strong> zone: <code>(?-s)^(?:.+?,){18}(.+?,.+?),.+</code>  &lt;–again replace every comma here!<br />
<strong>Replace with</strong> zone: <code>\1</code><br />
<strong>Search mode</strong>: Regular expression<br />
Action: Press the <strong>Replace All</strong> button</p>
<p dir="auto">I encourage you to read about regular expressions, some ways to get started <a href="https://notepad-plus-plus.org/community/topic/15765/faq-desk-where-to-find-regex-documentation" rel="nofollow ugc">here</a>.  Try the above expression in some of the interactive regex sites to see how it works.  Perhaps you will end up with a new technique in your data manipulation arsenal.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/37355</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/37355</guid><dc:creator><![CDATA[Scott Sumner]]></dc:creator><pubDate>Mon, 10 Dec 2018 16:12:39 GMT</pubDate></item></channel></rss>