<?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[Creating Line Break when there are multiple spaces on tagged line.]]></title><description><![CDATA[<p dir="auto">I am probably pushing my luck with getting more help, as I got some great help already. But I am trying to accomplish a huge project with very little regular expression experience. Any help would be greatly appreciated! Thank you!</p>
<p dir="auto">On any line that starts with C2: to create a new line when there is 3 spaces. And also create the C2: tag on the new line.</p>
<p dir="auto">Sample:</p>
<p dir="auto">[Y:prn]<br />
[C0:MNB WT REPORTS]<br />
[D:8/7/2019 11:07:29 PM]<br />
[C9:5]<br />
[C1:SynergyExport/440919]<br />
<strong>[C2:WT2400P   Wire Transfer Notices]</strong><br />
[C10:661703]<br />
[Y:prn]<br />
[C0:MNB AA REPORTS]<br />
[D:8/7/2019 11:07:29 PM]<br />
[C9:5]<br />
[C1:SynergyExport/440920]<br />
<strong>[C2:BSFRG00294   User Profile Changes]</strong><br />
[C10:661704]</p>
<p dir="auto">Outcome:</p>
<p dir="auto">[Y:prn]<br />
[C0:MNB WT REPORTS]<br />
[D:8/7/2019 11:07:29 PM]<br />
[C9:5]<br />
[C1:SynergyExport/440919]<br />
<strong>[C2:WT2400P<br />
[C2:Wire Transfer Notices]</strong><br />
[C10:661703]<br />
[Y:prn]<br />
[C0:MNB AA REPORTS]<br />
[D:8/7/2019 11:07:29 PM]<br />
[C9:5]<br />
[C1:SynergyExport/440920]<br />
<strong>[C2:BSFRG00294<br />
[C2:User Profile Changes]</strong><br />
[C10:661704]</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/22578/creating-line-break-when-there-are-multiple-spaces-on-tagged-line</link><generator>RSS for Node</generator><lastBuildDate>Wed, 15 Apr 2026 01:38:57 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/22578.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 15 Feb 2022 21:19:24 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Creating Line Break when there are multiple spaces on tagged line. on Tue, 15 Feb 2022 22:18:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/24522">@ashley-hoogenboom</a> ,<br />
All they can ask. I feel for these guys that do this day in and day out. You were my first attempt, and I was kind of angry when you changed the goal. :)  That said, welcome to the NPP forum, community and ask away. The only stupid question, is the one not asked. :)</p>
<p dir="auto">Lee</p>
]]></description><link>https://community.notepad-plus-plus.org/post/74232</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74232</guid><dc:creator><![CDATA[Lycan Thrope]]></dc:creator><pubDate>Tue, 15 Feb 2022 22:18:18 GMT</pubDate></item><item><title><![CDATA[Reply to Creating Line Break when there are multiple spaces on tagged line. on Tue, 15 Feb 2022 22:17:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7377">@alan-kilborn</a> Amazing! Thank you so much</p>
]]></description><link>https://community.notepad-plus-plus.org/post/74231</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74231</guid><dc:creator><![CDATA[Ashley Hoogenboom]]></dc:creator><pubDate>Tue, 15 Feb 2022 22:17:18 GMT</pubDate></item><item><title><![CDATA[Reply to Creating Line Break when there are multiple spaces on tagged line. on Tue, 15 Feb 2022 22:16:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/23651">@lycan-thrope</a> Thank you for your willingness to try and help me as well. I am new to this site as of last night, and I will be sure to follow the rules and make sure I am giving the correct sample. :-)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/74230</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74230</guid><dc:creator><![CDATA[Ashley Hoogenboom]]></dc:creator><pubDate>Tue, 15 Feb 2022 22:16:13 GMT</pubDate></item><item><title><![CDATA[Reply to Creating Line Break when there are multiple spaces on tagged line. on Tue, 15 Feb 2022 22:13:26 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/24522">@ashley-hoogenboom</a> said in <a href="/post/74227">Creating Line Break when there are multiple spaces on tagged line.</a>:</p>
<blockquote>
<p dir="auto">If you have time can you explain that to me</p>
</blockquote>
<h2>(?-s)^(([C2:)\w+)\x20{3}(.+)](\R)</h2>
<pre><code>(?-s)^((\[C2:)\w+)\x20{3}(.+)\](\R)
</code></pre>
<ul>
<li><a href="https://www.regular-expressions.info/modifiers.html" rel="nofollow ugc">Use these options for the whole regular expression</a> <code>(?-s)</code>
<ul>
<li><a href="https://www.regular-expressions.info/modifiers.html" rel="nofollow ugc">(hyphen inverts the meaning of the letters that follow)</a> <code>-</code></li>
<li><a href="https://www.regular-expressions.info/modifiers.html" rel="nofollow ugc">Dot doesn’t match line breaks</a> <code>s</code></li>
</ul>
</li>
<li><a href="https://www.regular-expressions.info/anchors.html" rel="nofollow ugc">Assert position at the beginning of a line (at beginning of the string or after a line break character) (carriage return and line feed, form feed, next line, line separator, paragraph separator)</a> <code>^</code></li>
<li><a href="https://www.regular-expressions.info/modifiers.html" rel="nofollow ugc">Match the regex below and capture its match into backreference number 1</a> <code>((\[C2:)\w+)</code>
<ul>
<li><a href="https://www.regular-expressions.info/modifiers.html" rel="nofollow ugc">Match the regex below and capture its match into backreference number 2</a> <code>(\[C2:)</code>
<ul>
<li>[Match the character “<a href="https://www.regular-expressions.info/characters.html#special" rel="nofollow ugc">” literally</a> <code>\[</code></li>
<li><a href="https://www.regular-expressions.info/characters.html" rel="nofollow ugc">Match the character string “C2:” literally (case sensitive)</a> <code>C2:</code></li>
</ul>
</li>
<li><a href="https://www.regular-expressions.info/shorthand.html" rel="nofollow ugc">Match a single character that is a “word character” (Unicode; any letter or ideograph, digit, letter number, underscore)</a> <code>\w+</code>
<ul>
<li><a href="https://www.regular-expressions.info/repeat.html" rel="nofollow ugc">Between one and unlimited times, as many times as possible, giving back as needed (greedy)</a> <code>+</code></li>
</ul>
</li>
</ul>
</li>
<li><a href="https://www.regular-expressions.info/nonprint.html" rel="nofollow ugc">Match the character “ ” which occupies position 0x20 (32 decimal) in the character set</a> <code>\x20{3}</code>
<ul>
<li><a href="https://www.regular-expressions.info/repeat.html#limit" rel="nofollow ugc">Exactly 3 times</a> <code>{3}</code></li>
</ul>
</li>
<li><a href="https://www.regular-expressions.info/modifiers.html" rel="nofollow ugc">Match the regex below and capture its match into backreference number 3</a> <code>(.+)</code>
<ul>
<li><a href="https://www.regular-expressions.info/dot.html" rel="nofollow ugc">Match any single character that is NOT a line break character (line feed, carriage return, form feed, next line, line separator, paragraph separator)</a> <code>.+</code>
<ul>
<li><a href="https://www.regular-expressions.info/repeat.html" rel="nofollow ugc">Between one and unlimited times, as many times as possible, giving back as needed (greedy)</a> <code>+</code></li>
</ul>
</li>
</ul>
</li>
<li>[Match the character “]” literally]<a href="https://www.regular-expressions.info/characters.html#special" rel="nofollow ugc">3</a> <code>\]</code></li>
<li><a href="https://www.regular-expressions.info/modifiers.html" rel="nofollow ugc">Match the regex below and capture its match into backreference number 4</a> <code>(\R)</code>
<ul>
<li><a href="https://www.regular-expressions.info/nonprint.html" rel="nofollow ugc">Match a line break (carriage return and line feed pair, sole line feed, sole carriage return, vertical tab, form feed, next line, line separator, or paragraph separator)</a> <code>\R</code></li>
</ul>
</li>
</ul>
<p dir="auto">${1}]${4}${2}${3}]${4}</p>
<ul>
<li><a href="https://www.regular-expressions.info/replacebackref.html" rel="nofollow ugc">Insert the text that was last matched by capturing group number 1</a> <code>${1}</code></li>
<li>[Insert the character “]” literally]<a href="https://www.regular-expressions.info/characters.html" rel="nofollow ugc">4</a> <code>]</code></li>
<li><a href="https://www.regular-expressions.info/replacebackref.html" rel="nofollow ugc">Insert the text that was last matched by capturing group number 4</a> <code>${4}</code></li>
<li><a href="https://www.regular-expressions.info/replacebackref.html" rel="nofollow ugc">Insert the text that was last matched by capturing group number 2</a> <code>${2}</code></li>
<li><a href="https://www.regular-expressions.info/replacebackref.html" rel="nofollow ugc">Insert the text that was last matched by capturing group number 3</a> <code>${3}</code></li>
<li>[Insert the character “]” literally]<a href="https://www.regular-expressions.info/characters.html" rel="nofollow ugc">4</a> <code>]</code></li>
<li><a href="https://www.regular-expressions.info/replacebackref.html" rel="nofollow ugc">Insert the text that was last matched by capturing group number 4</a> <code>${4}</code></li>
</ul>
<p dir="auto">Created with <a href="https://www.regexbuddy.com/" rel="nofollow ugc">RegexBuddy</a></p>
]]></description><link>https://community.notepad-plus-plus.org/post/74229</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74229</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Tue, 15 Feb 2022 22:13:26 GMT</pubDate></item><item><title><![CDATA[Reply to Creating Line Break when there are multiple spaces on tagged line. on Tue, 15 Feb 2022 22:11:09 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7377">@alan-kilborn</a> said in <a href="/post/74219">Creating Line Break when there are multiple spaces on tagged line.</a>:</p>
<blockquote>
<p dir="auto">(?-s)^(([C2:)\w+)\x20{3}(.+)](\R)</p>
</blockquote>
<p dir="auto">Thank you! That worked! If you have time can you explain that to me. If not I will be looking it up to make sense of it all.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/74227</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74227</guid><dc:creator><![CDATA[Ashley Hoogenboom]]></dc:creator><pubDate>Tue, 15 Feb 2022 22:11:09 GMT</pubDate></item><item><title><![CDATA[Reply to Creating Line Break when there are multiple spaces on tagged line. on Tue, 15 Feb 2022 22:10:49 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7377">@alan-kilborn</a> ,</p>
<p dir="auto">Perhaps, but I was the recipient of like until I got the system right, too. Mostly my problems stemmed from trying to describe the problem without knowing what the forum’s formatting norms were. It was my bad…and I was called on carpet about it, too, appropriately. :)</p>
<p dir="auto">Interestingly, my solution should have worked for him, anyway, spaces or not.::shrug::</p>
<p dir="auto">Lee</p>
]]></description><link>https://community.notepad-plus-plus.org/post/74225</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74225</guid><dc:creator><![CDATA[Lycan Thrope]]></dc:creator><pubDate>Tue, 15 Feb 2022 22:10:49 GMT</pubDate></item><item><title><![CDATA[Reply to Creating Line Break when there are multiple spaces on tagged line. on Tue, 15 Feb 2022 22:06:16 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/23651">@lycan-thrope</a> said in <a href="/post/74220">Creating Line Break when there are multiple spaces on tagged line.</a>:</p>
<blockquote>
<p dir="auto">Then you need to better prepare your example texts</p>
</blockquote>
<p dir="auto">A bit harsh.  You don’t know what you aren’t doing right until someone tells you, most times…</p>
<p dir="auto">The OP seemed very agreeable to read the info I pointed to, and rework the question/data to conform.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/74223</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74223</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Tue, 15 Feb 2022 22:06:16 GMT</pubDate></item><item><title><![CDATA[Reply to Creating Line Break when there are multiple spaces on tagged line. on Tue, 15 Feb 2022 22:05:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/24522">@ashley-hoogenboom</a><br />
<img src="/assets/uploads/files/1644962685142-c2_s_rscreenshot.png" alt="C2_S_RScreenshot.PNG" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.notepad-plus-plus.org/post/74222</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74222</guid><dc:creator><![CDATA[Lycan Thrope]]></dc:creator><pubDate>Tue, 15 Feb 2022 22:05:06 GMT</pubDate></item><item><title><![CDATA[Reply to Creating Line Break when there are multiple spaces on tagged line. on Tue, 15 Feb 2022 22:04:16 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/24522">@ashley-hoogenboom</a> ,</p>
<p dir="auto">Then you need to better prepare your example texts so someone doesn’t ignore you in exhaustion. Like you, I didn’t know crap about this Regex stuff until I needed to learn here with these good people’s help, but I always gave them exactly what I was using, what I needed and how it should look. This of course, is after I had beat my head silly trying to learn this on my own, so I at least had an inkling of what they were telling me in response…even if I didn’t understand what it was. I suggest you do the same. Learn what you can, then ask questions as you go, but changing the goal posts of what you want from the same piece of text is on you.</p>
<p dir="auto">Honestly, I’ve been following this forum in the background and now I understand the frustration  these folks have gotten to, trying to help people that don’t have an inkling of what it is they really want and expect people to read their intentions, rather than their needs.</p>
<p dir="auto">Lee</p>
]]></description><link>https://community.notepad-plus-plus.org/post/74220</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74220</guid><dc:creator><![CDATA[Lycan Thrope]]></dc:creator><pubDate>Tue, 15 Feb 2022 22:04:16 GMT</pubDate></item><item><title><![CDATA[Reply to Creating Line Break when there are multiple spaces on tagged line. on Tue, 15 Feb 2022 22:04:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/24522">@ashley-hoogenboom</a></p>
<p dir="auto">Try:</p>
<p dir="auto">find: <code>(?-s)^((\\[C2:)\w+)\x20{3}(.+)\\](\R)</code><br />
repl: <code>${1}]${4}${2}${3}]${4}</code><br />
search mode: regular expression</p>
]]></description><link>https://community.notepad-plus-plus.org/post/74219</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74219</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Tue, 15 Feb 2022 22:04:25 GMT</pubDate></item><item><title><![CDATA[Reply to Creating Line Break when there are multiple spaces on tagged line. on Tue, 15 Feb 2022 21:56:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7377">@alan-kilborn</a> said in <a href="/post/74215">Creating Line Break when there are multiple spaces on tagged line.</a>:</p>
<blockquote>
<p dir="auto">Ah ha!  Another definition of “3 spaces”!  :-)</p>
</blockquote>
<p dir="auto">Yes, sorry the first time when I copied it over it didn’t keep the additional spacing.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/74218</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74218</guid><dc:creator><![CDATA[Ashley Hoogenboom]]></dc:creator><pubDate>Tue, 15 Feb 2022 21:56:46 GMT</pubDate></item><item><title><![CDATA[Reply to Creating Line Break when there are multiple spaces on tagged line. on Tue, 15 Feb 2022 21:55:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/24522">@ashley-hoogenboom</a> said in <a href="/post/74213">Creating Line Break when there are multiple spaces on tagged line.</a>:</p>
<pre><code>[C2:WT2400P   Wire Transfer Notices]
</code></pre>
<p dir="auto">Ah ha!  Another definition of “3 spaces”!  :-)</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/24522">@ashley-hoogenboom</a> said in <a href="/post/74213">Creating Line Break when there are multiple spaces on tagged line.</a>:</p>
<blockquote>
<p dir="auto">But really want to learn!</p>
</blockquote>
<p dir="auto">We like people like that!  :-)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/74215</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74215</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Tue, 15 Feb 2022 21:55:08 GMT</pubDate></item><item><title><![CDATA[Reply to Creating Line Break when there are multiple spaces on tagged line. on Tue, 15 Feb 2022 21:52:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7377">@alan-kilborn</a></p>
<p dir="auto">Thank you for guiding me to the template…that makes it a lot easier. I will be sure to use that moving forward.</p>
<p dir="auto">Fellow Notepad++ Users,</p>
<p dir="auto">Could you please help me the the following search-and-replace problem I am having?</p>
<p dir="auto">On any line that starts with C2: to create a new line when there is 3 spaces. And also create the C2: tag on the new line.</p>
<p dir="auto">Here is the data I currently have (“before” data):</p>
<pre><code>[Y:prn]
[C0:MNB WT REPORTS]
[D:8/7/2019 11:07:29 PM]
[C9:5]
[C1:SynergyExport/440919]
[C2:WT2400P   Wire Transfer Notices]
[C10:661703]
[Y:prn]
[C0:MNB AA REPORTS]
[D:8/7/2019 11:07:29 PM]
[C9:5]
[C1:SynergyExport/440920]
[C2:BSFRG00294   User Profile Changes]
[C10:661704]
</code></pre>
<p dir="auto">Here is how I would like that data to look (“after” data):</p>
<pre><code>[Y:prn]
[C0:MNB WT REPORTS]
[D:8/7/2019 11:07:29 PM]
[C9:5]
[C1:SynergyExport/440919]
[C2:WT2400P
[C2:Wire Transfer Notices]
[C10:661703]
[Y:prn]
[C0:MNB AA REPORTS]
[D:8/7/2019 11:07:29 PM]
[C9:5]
[C1:SynergyExport/440920]
[C2:BSFRG00294
[C2:User Profile Changes]
[C10:661704]
</code></pre>
<p dir="auto">I am not really sure where to begin, I’m a beginner. But really want to learn!</p>
<p dir="auto">Find What = <code>^([C2:)</code><br />
Replace With =<br />
Search Mode = REGULAR EXPRESSION or NORMAL or EXTENDED<br />
Dot Matches Newline = CHECKED or NOT CHECKED<br />
HERE IS WHY YOU THOUGHT YOUR EXPRESSION WOULD WORK</p>
<p dir="auto">Unfortunately, this did not produce the output I desired, and I’m not sure why. Could you please help me understand what went wrong and help me find the solution?</p>
<p dir="auto">Thank you.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/74213</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74213</guid><dc:creator><![CDATA[Ashley Hoogenboom]]></dc:creator><pubDate>Tue, 15 Feb 2022 21:52:29 GMT</pubDate></item><item><title><![CDATA[Reply to Creating Line Break when there are multiple spaces on tagged line. on Tue, 15 Feb 2022 21:51:09 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/24522">@ashley-hoogenboom</a> said in <a href="/post/74201">Creating Line Break when there are multiple spaces on tagged line.</a>:</p>
<blockquote>
<p dir="auto">On any line that starts with C2: to create a new line when there is 3 spaces</p>
</blockquote>
<p dir="auto">Ok, a few ways to interpret that… :-)<br />
You meant (roughly) word-space1-word-space2-word-space3-word.  3 spaces.  Got it.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/74212</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74212</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Tue, 15 Feb 2022 21:51:09 GMT</pubDate></item><item><title><![CDATA[Reply to Creating Line Break when there are multiple spaces on tagged line. on Tue, 15 Feb 2022 21:47:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/24522">@ashley-hoogenboom</a> ,</p>
<p dir="auto">Take this with a grain of salt, as this is my first attempt at helping with this stuff that’s not mine. :)</p>
<p dir="auto">S/R:<br />
Find what: <code>^(\[C2:)(\w+)(.*)</code><br />
Replace with: <code>$1$2\n$1$3</code></p>
<p dir="auto">This worked for me with your example text, so take it for what it’s worth.</p>
<p dir="auto">Lee</p>
]]></description><link>https://community.notepad-plus-plus.org/post/74208</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74208</guid><dc:creator><![CDATA[Lycan Thrope]]></dc:creator><pubDate>Tue, 15 Feb 2022 21:47:23 GMT</pubDate></item><item><title><![CDATA[Reply to Creating Line Break when there are multiple spaces on tagged line. on Tue, 15 Feb 2022 21:42:32 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/24522">@ashley-hoogenboom</a> said in <a href="/post/74201">Creating Line Break when there are multiple spaces on tagged line.</a>:</p>
<blockquote>
<p dir="auto">On any line that starts with C2: to create a new line when there is 3 spaces</p>
</blockquote>
<p dir="auto">I don’t see any C2 lines with 3 spaces.<br />
You aren’t following the guidelines for posting for this sort of help.<br />
See <a href="https://community.notepad-plus-plus.org/topic/22022/faq-desk-template-for-search-replace-questions/1">HERE</a> for that.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/74205</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/74205</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Tue, 15 Feb 2022 21:42:32 GMT</pubDate></item></channel></rss>