<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: Как заменить двойными кавычками символы, используя RegExReplace?]]></title>
		<link>https://forum.script-coding.com/viewtopic.php?id=9276</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=9276&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Как заменить двойными кавычками символы, используя RegExReplace?».]]></description>
		<lastBuildDate>Tue, 18 Feb 2014 13:22:48 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Как заменить двойными кавычками символы, используя RegExReplace?]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=80163#p80163</link>
			<description><![CDATA[<p>но это не оптимальный код, на каждую кавычку по строке = 4 строки замены.</p>]]></description>
			<author><![CDATA[null@example.com (sh-aleksandr)]]></author>
			<pubDate>Tue, 18 Feb 2014 13:22:48 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=80163#p80163</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Как заменить двойными кавычками символы, используя RegExReplace?]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=80162#p80162</link>
			<description><![CDATA[<p>чуть поправлю код, так получается<br /></p><div class="codebox"><pre><code>

gdeIshim = текст1, “текст2”, «текст3»
StringReplace, NewStr1, gdeIshim, «, &quot;, All
msgbox %NewStr1%

</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (sh-aleksandr)]]></author>
			<pubDate>Tue, 18 Feb 2014 13:20:21 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=80162#p80162</guid>
		</item>
		<item>
			<title><![CDATA[AHK: Как заменить двойными кавычками символы, используя RegExReplace?]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=80161#p80161</link>
			<description><![CDATA[<p>Добрый день Всем.</p><p>Как заменить определенные символы <strong>“” «»</strong> двойными кавычками <strong>&quot;</strong> , используя команду RegExReplace?</p><p>Это работает, но заменяет на + и », а не &quot;.<br /></p><div class="codebox"><pre><code>

; текст1, “текст2”, «текст3» - из этого
; текст1, &quot;текст2&quot;, &quot;текст3&quot;- получить это
;(\x93|\x94|\xab|\xbb)-кодировка ASCII кавычек “” «»
NewStr1 := RegExReplace(&quot;текст1, “текст2”, «текст3»&quot;, &quot;(\x93|\x94|\xab|\xbb)&quot;, &quot;+&quot;, ReplacementCount)
NewStr2 := RegExReplace(&quot;текст1, “текст2”, «текст3»&quot;, &quot;(\x93|\x94|\xab|\xbb)&quot;, &quot;»&quot;, ReplacementCount)

msgbox %NewStr1% `n%NewStr2%

</code></pre></div><p>Эта строка не работает из-за &quot;&quot;&quot;</p><p>NewStr2 := RegExReplace(&quot;текст1, “текст2”, «текст3»&quot;, &quot;(\x93|\x94|\xab|\xbb)&quot;, &quot;&quot;&quot;, ReplacementCount)</p><br /><p>Командой </p><div class="codebox"><pre><code>
StringReplace, NewStr1, gdeIshim, «, &quot;, All
</code></pre></div><p>получается, но хотелось бы знать возможно ли <strong>RegExReplace</strong> - этим в одну строку забабахать тоже.</p><p> Заранее спасибо.</p>]]></description>
			<author><![CDATA[null@example.com (sh-aleksandr)]]></author>
			<pubDate>Tue, 18 Feb 2014 13:15:43 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=80161#p80161</guid>
		</item>
	</channel>
</rss>
