<?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[Simple replace &#x2F; to hard for me]]></title><description><![CDATA[<p dir="auto">Hi, can anyone please help me with this simple problem?</p>
<p dir="auto">in a file I need to search for numbers like this:</p>
<p dir="auto">*1234567890</p>
<p dir="auto">the numbers are always changing, but I need to get the Asterisk (*) removed.</p>
<p dir="auto">the replacement dosen’t need to be the same number, just the Asterisk need to be removed.</p>
<p dir="auto">so from this: *1234567890<br />
to this :           0000000000</p>
<p dir="auto">would be fine!</p>
<p dir="auto">Thanks if anyone can help!</p>
<p dir="auto">Regards, Sascha</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/11574/simple-replace-to-hard-for-me</link><generator>RSS for Node</generator><lastBuildDate>Fri, 17 Apr 2026 11:50:54 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/11574.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 05 Apr 2016 15:06:08 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Simple replace &#x2F; to hard for me on Tue, 05 Apr 2016 16:21:09 GMT]]></title><description><![CDATA[<p dir="auto">worked! Thanks Claudia!</p>
]]></description><link>https://community.notepad-plus-plus.org/post/15174</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/15174</guid><dc:creator><![CDATA[Sascha Holliger]]></dc:creator><pubDate>Tue, 05 Apr 2016 16:21:09 GMT</pubDate></item><item><title><![CDATA[Reply to Simple replace &#x2F; to hard for me on Tue, 05 Apr 2016 15:37:26 GMT]]></title><description><![CDATA[<p dir="auto">In find what replace the + with {10}</p>
<pre><code>\*(\d{10})
</code></pre>
<p dir="auto">Cheers<br />
Claudia</p>
]]></description><link>https://community.notepad-plus-plus.org/post/15170</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/15170</guid><dc:creator><![CDATA[Claudia Frank]]></dc:creator><pubDate>Tue, 05 Apr 2016 15:37:26 GMT</pubDate></item><item><title><![CDATA[Reply to Simple replace &#x2F; to hard for me on Tue, 05 Apr 2016 15:30:43 GMT]]></title><description><![CDATA[<p dir="auto">Thanks, but it should only replace numbers with 10 digits… there are a lot of numbers in that file,  only if the number has a leading * and is followed by 10 digits it should be replaced.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/15169</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/15169</guid><dc:creator><![CDATA[Sascha Holliger]]></dc:creator><pubDate>Tue, 05 Apr 2016 15:30:43 GMT</pubDate></item><item><title><![CDATA[Reply to Simple replace &#x2F; to hard for me on Tue, 05 Apr 2016 15:25:38 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/4822">@Sascha-Holliger</a>,</p>
<p dir="auto">in replace dialog check regular expression.</p>
<pre><code>Find what:\*(\d+)
Replace with:\1
</code></pre>
<p dir="auto">as * is a known char in regex we need to escape with \<br />
(\d+) = this matches any size of numbers and get stored in \1</p>
<p dir="auto">Cheers<br />
Claudia</p>
]]></description><link>https://community.notepad-plus-plus.org/post/15168</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/15168</guid><dc:creator><![CDATA[Claudia Frank]]></dc:creator><pubDate>Tue, 05 Apr 2016 15:25:38 GMT</pubDate></item></channel></rss>