<?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 can i bulk change this]]></title><description><![CDATA[<p dir="auto">Hi, i have this section that repeats throught the file: &lt;my_score&gt;2&lt;/my_score&gt;<br />
i want to change the number that is in the middle to a 0. How can i do that</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/24232/how-can-i-bulk-change-this</link><generator>RSS for Node</generator><lastBuildDate>Fri, 10 Jul 2026 22:32:02 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/24232.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 09 Mar 2023 22:12:22 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How can i bulk change this on Thu, 09 Mar 2023 22:32:04 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 man, you helped me a lot!</p>
]]></description><link>https://community.notepad-plus-plus.org/post/84742</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/84742</guid><dc:creator><![CDATA[Michael Vv]]></dc:creator><pubDate>Thu, 09 Mar 2023 22:32:04 GMT</pubDate></item><item><title><![CDATA[Reply to How can i bulk change this on Thu, 09 Mar 2023 22:31:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/michael-vv" aria-label="Profile: Michael-Vv">@<bdi>Michael-Vv</bdi></a> ,</p>
<p dir="auto">I couldn’t tell from your original post whether it would be just the number that would be different (which I was guessing), or whether it would also be the tag text in some way.  And whether other requirements would pop up as I kept giving answers.  So I gave the most simplistic one, to try to convince you that you needed to provide actual information if you wanted a reasonable answer.</p>
<p dir="auto">Given you said “greater range of numbers”, then</p>
<ul>
<li>FIND = <code>&lt;my_score&gt;\d+&lt;/my_score&gt;</code></li>
<li>REPLACE = <code>&lt;my_score&gt;0&lt;/my_score&gt;</code></li>
<li>SEARCH MODE = Regular Expression</li>
</ul>
<p dir="auto">The <code>\d</code> means “any digit character”.  And <code>+</code> means “one or more”.  So it will match one or more digits, and replace them all with a single <code>0</code>.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/84741</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/84741</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Thu, 09 Mar 2023 22:31:50 GMT</pubDate></item><item><title><![CDATA[Reply to How can i bulk change this on Thu, 09 Mar 2023 22:27: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> not exactly what i wanted, but i managed anyway since the number in the middle only goes from 1 to 10. But if i had a greater range of numbers how would i do this?</p>
]]></description><link>https://community.notepad-plus-plus.org/post/84740</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/84740</guid><dc:creator><![CDATA[Michael Vv]]></dc:creator><pubDate>Thu, 09 Mar 2023 22:27:54 GMT</pubDate></item><item><title><![CDATA[Reply to How can i bulk change this on Thu, 09 Mar 2023 22:15:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/michael-vv" aria-label="Profile: Michael-Vv">@<bdi>Michael-Vv</bdi></a> said in <a href="/post/84737">How can i bulk change this</a>:</p>
<blockquote>
<p dir="auto">&lt;my_score&gt;2&lt;/my_score&gt;</p>
</blockquote>
<p dir="auto">As stated, it’s quite simple</p>
<p dir="auto">FIND = <code>&lt;my_score&gt;2&lt;/my_score&gt;</code><br />
REPLACE = <code>&lt;my_score&gt;0&lt;/my_score&gt;</code></p>
<p dir="auto">If you want a different answer, then you’d better ask again, with more details.</p>
<p dir="auto">-—</p>
<h3>Useful References</h3>
<ul>
<li><a href="https://community.notepad-plus-plus.org/topic/21965/please-read-before-posting">Please Read Before Posting</a></li>
<li><a href="https://community.notepad-plus-plus.org/topic/22022/template-for-search-replace-questions">Template for Search/Replace Questions</a></li>
<li><a href="https://community.notepad-plus-plus.org/topic/21925/faq-desk-formatting-forum-posts">Formatting Forum Posts</a></li>
<li><a href="https://npp-user-manual.org/docs/searching/#regular-expressions" rel="nofollow ugc">Notepad++ Online User Manual: Searching/Regex</a></li>
<li><a href="https://community.notepad-plus-plus.org/topic/15765/faq-desk-where-to-find-regular-expressions-regex-documentation">FAQ: Where to find other regular expressions (regex) documentation</a></li>
</ul>
]]></description><link>https://community.notepad-plus-plus.org/post/84738</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/84738</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Thu, 09 Mar 2023 22:15:54 GMT</pubDate></item></channel></rss>