<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Автоматическое удаление сочетания букв из текста]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=14407&amp;type=atom" />
	<updated>2018-12-12T17:53:41Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=14407</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Автоматическое удаление сочетания букв из текста]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=130387#p130387" />
			<content type="html"><![CDATA[<p>Код ненадёжный:<br /></p><div class="codebox"><pre><code>clipboard := &quot;test¢¢¢¢¢¢test&quot;
StringReplace, Result, Clipboard, % Text, ¢, All
Loop, parse, Result, `¢
	Final .= A_LoopField
msgbox % ClipBoard := Final</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2018-12-12T17:53:41Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=130387#p130387</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Автоматическое удаление сочетания букв из текста]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=130382#p130382" />
			<content type="html"><![CDATA[<p>В Edit пишите, что нужно убирать из копируемого текста.<br /></p><div class="codebox"><pre><code>
Gui, Add, Edit, vText,
Gui, show
return

~^vk43::
sleep 10
Gui, submit, NoHide
StringReplace, Result, Clipboard, % Text, ¢, All
Loop, parse, Result, `¢
	Final .= A_LoopField
ClipBoard := Final
return
</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Ms_Smail]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=39022</uri>
			</author>
			<updated>2018-12-12T15:42:45Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=130382#p130382</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Автоматическое удаление сочетания букв из текста]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=130380#p130380" />
			<content type="html"><![CDATA[<p>Хорошая идея. Можете приступать. <img src="//forum.script-coding.com/img/smilies/smile.png" width="15" height="15" /></p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2018-12-12T15:24:11Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=130380#p130380</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Автоматическое удаление сочетания букв из текста]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=130378#p130378" />
			<content type="html"><![CDATA[<p><strong>Всем привет! <img src="//forum.script-coding.com/img/smilies/smile.png" width="15" height="15" /></strong><br />Есть идея сделать скрипт, который будет автоматически удалять определённое <span class="bbu">сочетание</span> букв из копируемого текста.</p><div class="quotebox"><blockquote><p><strong>Пример:</strong><br />Есть текст &quot;POVqwertyuAsdfghZXCVBNpoiuyPOV&quot; из которого нужно удалить все <span class="bbu">сочетания</span> букв &quot;POV&quot;, чтобы получилось просто &quot;qwertyuAsdfghZXCVBNpoiuy&quot;.</p><p><strong>Более подробный пример:</strong><br />Вот вижу я текст &quot;POVqwertyuAsdfghZXCVBNpoiuyPOV&quot;. Я хочу его скопировать, но без <span class="bbu">сочетания</span> букв &quot;POV&quot;.<br />В скрипт я ввёл &quot;POV&quot;. Теперь скрипт понимает, что я хочу удалить все <span class="bbu">сочетания</span> букв &quot;POV&quot; из копируемого текста.<br />Я сочетанием клавиш Ctrl+C копирую текст &quot;POVqwertyuAsdfghZXCVBNpoiuyPOV&quot;, но когда я буду куда-либо его вставлять, он будет уже таким &quot;qwertyuAsdfghZXCVBNpoiuy&quot;.</p></blockquote></div><p>Надеюсь, что объяснил всё предельно ясно)<br />Заранее спасибо!</p>]]></content>
			<author>
				<name><![CDATA[Purple]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=39723</uri>
			</author>
			<updated>2018-12-12T15:19:19Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=130378#p130378</id>
		</entry>
</feed>
