<?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[Replace text inside Quotations]]></title><description><![CDATA[<p dir="auto">Hello,</p>
<p dir="auto">I am struggling to find an answer to my problem.</p>
<p dir="auto">I have a large text file that has lots of strings similar to the below:-</p>
<p dir="auto">translation=“-56.3568 13.54 94.6262”<br />
translation=“116.799 17.376 -142.61”<br />
translation=“38.3606 5.67512 204.685”</p>
<p dir="auto">Each middle number inside the quotes is different but I want them to read all the same, like this:-</p>
<p dir="auto">translation=“-56.3568 10.2 94.6262”<br />
translation=“116.799 10.2 -142.61”<br />
translation=“38.3606 10.2 204.685”</p>
<p dir="auto">Is that even possible with Notepad++?</p>
<p dir="auto">Many thanks,</p>
<p dir="auto">Greeham</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/24273/replace-text-inside-quotations</link><generator>RSS for Node</generator><lastBuildDate>Tue, 12 May 2026 12:06:23 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/24273.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 20 Mar 2023 12:46:30 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Replace text inside Quotations on Mon, 20 Mar 2023 13:29:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/geeman72" aria-label="Profile: geeman72">@<bdi>geeman72</bdi></a> said in <a href="/post/85017">Replace text inside Quotations</a>:</p>
<blockquote>
<p dir="auto">and worked with this</p>
</blockquote>
<p dir="auto">Seems reasonable!</p>
]]></description><link>https://community.notepad-plus-plus.org/post/85018</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/85018</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Mon, 20 Mar 2023 13:29:50 GMT</pubDate></item><item><title><![CDATA[Reply to Replace text inside Quotations on Mon, 20 Mar 2023 13:27:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alan-kilborn" aria-label="Profile: Alan-Kilborn">@<bdi>Alan-Kilborn</bdi></a> Great thanks.</p>
<p dir="auto">I have managed it with some additional searching (since I am a new noobie) and worked with this:-</p>
<p dir="auto">Find: (?-s)(.+?translation=")([\d.-]+) [\d.-]+ ([\d.-]+)<br />
Replace: ${1}${2} 99.403 ${3}<br />
Search mode: Regular expression</p>
<p dir="auto">Thanks again,</p>
<p dir="auto">Greeham</p>
]]></description><link>https://community.notepad-plus-plus.org/post/85017</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/85017</guid><dc:creator><![CDATA[geeman72]]></dc:creator><pubDate>Mon, 20 Mar 2023 13:27:56 GMT</pubDate></item><item><title><![CDATA[Reply to Replace text inside Quotations on Mon, 20 Mar 2023 13:18:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/geeman72" aria-label="Profile: geeman72">@<bdi>geeman72</bdi></a> said in <a href="/post/85015">Replace text inside Quotations</a>:</p>
<blockquote>
<p dir="auto">so would I add the search to include the word translation at the beginning as well?</p>
</blockquote>
<p dir="auto">Certainly!</p>
]]></description><link>https://community.notepad-plus-plus.org/post/85016</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/85016</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Mon, 20 Mar 2023 13:18:19 GMT</pubDate></item><item><title><![CDATA[Reply to Replace text inside Quotations on Mon, 20 Mar 2023 13:13:22 GMT]]></title><description><![CDATA[<p dir="auto">That’s great thank you, one other question if I might, I forgot to mention there are other strings that are made up of 3 sets of numbers as well but don’t want those changing, so would I add the search to include the word translation at the beginning as well?</p>
<p dir="auto">Thanks for the help,</p>
<p dir="auto">Greeham</p>
]]></description><link>https://community.notepad-plus-plus.org/post/85015</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/85015</guid><dc:creator><![CDATA[geeman72]]></dc:creator><pubDate>Mon, 20 Mar 2023 13:13:22 GMT</pubDate></item><item><title><![CDATA[Reply to Replace text inside Quotations on Mon, 20 Mar 2023 13:09:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/geeman72" aria-label="Profile: geeman72">@<bdi>geeman72</bdi></a> said in <a href="/post/85013">Replace text inside Quotations</a>:</p>
<blockquote>
<p dir="auto">translation=“-56.3568 13.54 94.6262”<br />
translation=“116.799 17.376 -142.61”<br />
translation=“38.3606 5.67512 204.685”</p>
</blockquote>
<p dir="auto">A quick one that is not entirely rigorous, but fits your data:</p>
<p dir="auto">Find: <code>([\d.-]+) [\d.-]+ ([\d.-]+)</code><br />
Replace: <code>${1} 10.2 ${2}</code><br />
Search mode: Regular expression</p>
<p dir="auto">More relevant info:</p>
<ul>
<li>
<p dir="auto"><a href="https://community.notepad-plus-plus.org/topic/21925/faq-desk-formatting-forum-posts">https://community.notepad-plus-plus.org/topic/21925/faq-desk-formatting-forum-posts</a></p>
</li>
<li>
<p dir="auto"><a href="https://community.notepad-plus-plus.org/topic/22022/faq-desk-template-for-search-replace-questions">https://community.notepad-plus-plus.org/topic/22022/faq-desk-template-for-search-replace-questions</a></p>
</li>
<li>
<p dir="auto"><a href="https://community.notepad-plus-plus.org/topic/15765/faq-desk-where-to-find-regular-expressions-regex-documentation">https://community.notepad-plus-plus.org/topic/15765/faq-desk-where-to-find-regular-expressions-regex-documentation</a></p>
</li>
</ul>
]]></description><link>https://community.notepad-plus-plus.org/post/85014</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/85014</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Mon, 20 Mar 2023 13:09:08 GMT</pubDate></item></channel></rss>