<?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[Erase the Space Before a Decimal and Add a Comma]]></title><description><![CDATA[<p dir="auto">Hi!</p>
<p dir="auto">I have the following line repeated in different variations in a document:</p>
<p dir="auto">009084, Ind - 34007 630.00</p>
<p dir="auto">I would like to add a comma and erase the space between 34007 and 630.00. The decimal number changes all over the document, so I after some research I found that (\d+.\d{1,2})\d* finds every single decimal number in my document.</p>
<p dir="auto">I am struggling with what to write on the replace field in order to erase the space between both numbers and place a comma.</p>
<p dir="auto">I truly appreciate any help you guys might be able to provide :)</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/19388/erase-the-space-before-a-decimal-and-add-a-comma</link><generator>RSS for Node</generator><lastBuildDate>Thu, 14 May 2026 00:32:59 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/19388.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 11 May 2020 22:07:48 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Erase the Space Before a Decimal and Add a Comma on Mon, 11 May 2020 23:25:52 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/astrosofista" aria-label="Profile: astrosofista">@<bdi>astrosofista</bdi></a> Thanks a million!</p>
]]></description><link>https://community.notepad-plus-plus.org/post/53764</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/53764</guid><dc:creator><![CDATA[Marie Palmquist]]></dc:creator><pubDate>Mon, 11 May 2020 23:25:52 GMT</pubDate></item><item><title><![CDATA[Reply to Erase the Space Before a Decimal and Add a Comma on Mon, 11 May 2020 23:25:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/marie-palmquist" aria-label="Profile: Marie-Palmquist">@<bdi>Marie-Palmquist</bdi></a> I found the solution!</p>
<p dir="auto">In the replace field I added ,/n</p>
]]></description><link>https://community.notepad-plus-plus.org/post/53763</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/53763</guid><dc:creator><![CDATA[Marie Palmquist]]></dc:creator><pubDate>Mon, 11 May 2020 23:25:08 GMT</pubDate></item><item><title><![CDATA[Reply to Erase the Space Before a Decimal and Add a Comma on Mon, 11 May 2020 23:20:16 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/marie-palmquist" aria-label="Profile: Marie-Palmquist">@<bdi>Marie-Palmquist</bdi></a></p>
<p dir="auto">If I understood the problem correctly, you want to replace the space between two those numbers with a comma. If this is the case, you could apply the following S/R regex:</p>
<p dir="auto">Search: <code>(?-s)\d+,\sInd\s-\s\K(\d+)\s([\d.]+)</code><br />
Replace: <code>$1,$2</code></p>
<p dir="auto">Put the caret at the very beginning of the document, select just the <code>Regular Expressions mode</code> and click on <code>Replace All</code>.</p>
<p dir="auto">Given the following data</p>
<pre><code class="language-z">009084, Ind - 34007 630.00
009084, Ind - 45632 123.98
009084, Ind - 98764 334.83
</code></pre>
<p dir="auto">you will get this output:</p>
<pre><code class="language-z">009084, Ind - 34007,630.00
009084, Ind - 45632,123.98
009084, Ind - 98764,334.83
</code></pre>
<p dir="auto">Hope this helps</p>
]]></description><link>https://community.notepad-plus-plus.org/post/53762</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/53762</guid><dc:creator><![CDATA[astrosofista]]></dc:creator><pubDate>Mon, 11 May 2020 23:20:16 GMT</pubDate></item></channel></rss>