<?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[I can&#x27;t get search and replace to work anymore.]]></title><description><![CDATA[<p dir="auto">Specifically, I am trying to do a few things at once.<br />
I want to search for “No Citadel” or “Level ?” [1-6"] with spaces before it and a CR afterwards and replace the spaces and CR with a tab.<br />
I did this once, but lost it,</p>
<p dir="auto">As far as I know, something like:<br />
“\s+(No Citadel|Level ?)\R”<br />
“\1\t”<br />
should work, but I cannot figure out what I am doing wrong.<br />
Are any of you willing to help? :)</p>
<p dir="auto">This is for a game from the 80s and 90s called Tradewars 2002 and due to the inherent limitations of the system, it creates tables using a monotype font, and each row requires two rows on-screen, so I like to export and format it to make it easier to read.</p>
<p dir="auto">Thank you very much!  Please enjoy your day! :)</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/26535/i-can-t-get-search-and-replace-to-work-anymore</link><generator>RSS for Node</generator><lastBuildDate>Fri, 07 Aug 2026 21:30:39 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/26535.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 12 Jan 2025 14:04:39 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to I can&#x27;t get search and replace to work anymore. on Sun, 12 Jan 2025 17:47:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/peterjones" aria-label="Profile: PeterJones">@<bdi>PeterJones</bdi></a> Thanks.  Also, I forgot to turn on Regular expression.  Can you believe it?!  What a noob! :D</p>
<p dir="auto">It works now!  Thanks!</p>
]]></description><link>https://community.notepad-plus-plus.org/post/99090</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/99090</guid><dc:creator><![CDATA[drippingwax]]></dc:creator><pubDate>Sun, 12 Jan 2025 17:47:54 GMT</pubDate></item><item><title><![CDATA[Reply to I can&#x27;t get search and replace to work anymore. on Sun, 12 Jan 2025 15:43:57 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/drippingwax" aria-label="Profile: drippingwax">@<bdi>drippingwax</bdi></a> said in <a href="/post/99082">I can't get search and replace to work anymore.</a>:</p>
<blockquote>
<p dir="auto">should work, but I cannot figure out what I am doing wr</p>
</blockquote>
<p dir="auto">The question mark has special meaning to Notepad++ regex: “0 or 1 of whatever came right before”.  So in your expression, it means “0 or 1 spaces”, which is not what you want.</p>
<p dir="auto"><code>\?</code> matches a literal question mark<br />
But given <code>1-6"</code>, I think you want <code>\d</code> to match a digit character</p>
]]></description><link>https://community.notepad-plus-plus.org/post/99088</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/99088</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Sun, 12 Jan 2025 15:43:57 GMT</pubDate></item></channel></rss>