<?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[How to remove all lines with 9 or less numbers]]></title><description><![CDATA[<p dir="auto">I have a list of numbers that I want to filter out and essentially I want to remove every line that has 9 numbers it in or less.<br />
For instance if I had lines of numbers like below I would want to get rid of the  976474535 number since it has less than 10 numbers.<br />
5673794574<br />
976474535<br />
1274781284</p>
<p dir="auto">Any help would be great! :)</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/11408/how-to-remove-all-lines-with-9-or-less-numbers</link><generator>RSS for Node</generator><lastBuildDate>Sat, 08 Aug 2026 01:31:01 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/11408.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 03 Mar 2016 06:15:01 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How to remove all lines with 9 or less numbers on Thu, 03 Mar 2016 15:02:24 GMT]]></title><description><![CDATA[<p dir="auto">Thanks Dail you have been super helpful! :)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/14479</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/14479</guid><dc:creator><![CDATA[Aaron Miller]]></dc:creator><pubDate>Thu, 03 Mar 2016 15:02:24 GMT</pubDate></item><item><title><![CDATA[Reply to How to remove all lines with 9 or less numbers on Thu, 03 Mar 2016 13:06:39 GMT]]></title><description><![CDATA[<p dir="auto">Search for:</p>
<pre><code>^\d{1,9}\R
</code></pre>
<p dir="auto">And replace with nothing. Make sure you have the search mode set to Regular Expression</p>
]]></description><link>https://community.notepad-plus-plus.org/post/14472</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/14472</guid><dc:creator><![CDATA[dail]]></dc:creator><pubDate>Thu, 03 Mar 2016 13:06:39 GMT</pubDate></item></channel></rss>