<?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[reorganize numbers&#x2F;words inside punctuations]]></title><description><![CDATA[<p dir="auto">Hi everyone,<br />
I have a text that is organized like this using punctuation “|” from the closest example:</p>
<pre><code>hello: one|three|two|four|

*" or sometimes the form comes in numbers, not letters"*

hello: 1|3|2|4|

</code></pre>
<p dir="auto">is there a possibility to move words or numbers from the second position to the third or vice versa.<br />
to became like THIS:</p>
<pre><code>hello: one|**two**|**three**|four|

*" or sometimes the form comes in numbers, not letters"*

hello: 1|**2**|**3**|4|
</code></pre>
<p dir="auto">I used “**” to mark the changes<br />
thank you</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/21241/reorganize-numbers-words-inside-punctuations</link><generator>RSS for Node</generator><lastBuildDate>Sun, 08 Mar 2026 23:10:22 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/21241.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 29 May 2021 13:46:26 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to reorganize numbers&#x2F;words inside punctuations on Sat, 29 May 2021 15:50:19 GMT]]></title><description><![CDATA[<p dir="auto">Thank you, it has been fixed using some other form, with:</p>
<pre><code>hello: +(?:\w+\|){N}\K(\w+)\|(\w+)
</code></pre>
<p dir="auto">to replace with</p>
<pre><code>$2|$1
</code></pre>
]]></description><link>https://community.notepad-plus-plus.org/post/66469</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/66469</guid><dc:creator><![CDATA[Handa Flocka]]></dc:creator><pubDate>Sat, 29 May 2021 15:50:19 GMT</pubDate></item><item><title><![CDATA[Reply to reorganize numbers&#x2F;words inside punctuations on Sat, 29 May 2021 15:44:21 GMT]]></title><description><![CDATA[<p dir="auto">find : <code>(three|3)\|(two|2)</code><br />
replace with : <code> $2|$1</code><br />
search mode : <code>regular expression</code></p>
]]></description><link>https://community.notepad-plus-plus.org/post/66468</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/66468</guid><dc:creator><![CDATA[Abed99]]></dc:creator><pubDate>Sat, 29 May 2021 15:44:21 GMT</pubDate></item></channel></rss>