<?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=5920&amp;type=atom" />
	<updated>2022-10-08T08:41:05Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=5920</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Непростая задача с копипастом]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=155139#p155139" />
			<content type="html"><![CDATA[<p><strong>viviancels</strong>, <a href="https://forum.script-coding.com/rules.html#3.11.:~:text=%D0%94%D0%B0%D0%B6%D0%B5%20%D0%B5%D1%81%D0%BB%D0%B8%20%D0%92%D1%8B%20%D0%B2%D0%BF%D0%B5%D1%80%D0%B2%D1%8B%D0%B5%20%D0%BD%D0%B0%20%D1%84%D0%BE%D1%80%D1%83%D0%BC%D0%B5%2C%20%D0%BD%D0%B5%20%D0%B1%D0%BE%D0%B9%D1%82%D0%B5%D1%81%D1%8C%20%D0%B8%20%D0%BD%D0%B5%20%D1%81%D1%82%D0%B5%D1%81%D0%BD%D1%8F%D0%B9%D1%82%D0%B5%D1%81%D1%8C%20%D1%81%D0%BE%D0%B7%D0%B4%D0%B0%D1%82%D1%8C%20%D0%BD%D0%BE%D0%B2%D1%83%D1%8E%20%D1%82%D0%B5%D0%BC%D1%83%20%D0%BF%D0%BE%20%D0%B8%D0%BD%D1%82%D0%B5%D1%80%D0%B5%D1%81%D1%83%D1%8E%D1%89%D0%B5%D0%BC%D1%83%20%D0%92%D0%B0%D1%81%20%D0%B2%D0%BE%D0%BF%D1%80%D0%BE%D1%81%D1%83.">не надо</a> поднимать старые темы, создавайте свои.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2022-10-08T08:41:05Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=155139#p155139</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Непростая задача с копипастом]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=155138#p155138" />
			<content type="html"><![CDATA[<p>Здравствуйте. Пытаюсь научиться построчно копировать часть строк в нужные строки. В примере нужно выделить name1 в переменную rel и http:\\123 в переменную url из 1й строки srt1, затем в str2 найти строку, которая содержит name1, и определить ее позицию, после которой искать url=<br />FoundPos находит 32 позицию, перед name2, а не перед name1, думаю, это потому что в переменную rel копируется значение name2 из второй (последней) строки. Казалось, что строки будут обрабатываться по порядку.</p><div class="codebox"><pre><code>
str1 =
(
name1 http:\\123
name2 http:\\456
)
str2 =
(
1234 name1 (1234)
url=555
5678 name2 (4321)
url=999
)
Loop, 1
{
	Loop, parse, str1, `n, `r
		{
		rel := regexreplace(A_LoopField, &quot;`am)(.*) http.*&quot;, &quot;$1&quot;)
		}
	Loop, parse, str1, `n, `r
		{
		url := regexreplace(A_LoopField, &quot;`am).* (http.*)&quot;, &quot;$1&quot;)
		}
	FoundPos := InStr(str2, rel)
	str2 := RegExReplace(str2, &quot;url=&quot;, &quot;url=&quot;url, 1, FoundPos)
	MsgBox % str2
}
</code></pre></div>]]></content>
			<author>
				<name><![CDATA[viviancels]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=42788</uri>
			</author>
			<updated>2022-10-08T06:26:15Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=155138#p155138</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Непростая задача с копипастом]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49431#p49431" />
			<content type="html"><![CDATA[<p>Ну вот, уже чувствуется рост! <img src="//forum.script-coding.com/img/smilies/smile.png" width="15" height="15" /></p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2011-06-25T19:01:10Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49431#p49431</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Непростая задача с копипастом]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49430#p49430" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>Эдвард пишет:</cite><blockquote><p>Столкнулся с такой проблемой: при активации скрипта вставки строки в тег [&lt;span class=&quot;style3&quot;&gt;Текст&lt;/span&gt;] всякий раз возникает ошибка, указывающая именно на данную командную строку. Применяю код, который дан в примере:</p><div class="codebox"><pre><code>NewStr := RegExReplace(Haystack, &quot;(&lt;span class=&quot;style3&quot;&gt;&quot;).*?(&quot;&lt;/span&gt;)&quot;, &quot;$1&quot; OutputVar &quot;$2&quot;, &quot;&quot;, 1)</code></pre></div><p>Что делаю не так? И как исправить ошибку?</p></blockquote></div><p>Виноват – балбес! Только сейчас вспомнил, что буквальные кавычки должны заключаться в ещё одни кавычки. Код поправил, всё заработало:</p><div class="codebox"><pre><code>NewStr := RegExReplace(Haystack, &quot;(&lt;span class=&quot;&quot;style3&quot;&quot;&gt;).*?(&lt;/span&gt;)&quot;, &quot;$1&quot; OutputVar &quot;$2&quot;, &quot;&quot;, 1)</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Эдвард]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27032</uri>
			</author>
			<updated>2011-06-25T18:35:40Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49430#p49430</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Непростая задача с копипастом]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49428#p49428" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>teadrinker пишет:</cite><blockquote><p>1. В первой строке заменится значение <em>title</em>:<br /></p><div class="codebox"><pre><code>Newtitle = 1000 КБ

htmltext =
(
&lt;tr&gt;
   &lt;td width=246 valign=top&gt;&lt;p align=center style=&#039;text-align:center&#039;&gt;&lt;a href=&quot;http://www.e1.ru/fun/photo/view_pic.php/o/c5eecd1ed3b251440c7002b626da41c5/view.pic&quot;&gt;&lt;img src=&quot;4021.gif&quot; title=&quot;897 КБ&quot; width=&quot;226&quot; height=&quot;151&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;
   &lt;td width=246 valign=top&gt;&lt;p align=center style=&#039;text-align:center&#039;&gt;&lt;a href=&quot;http://www.e1.ru/fun/photo/view_pic.php/o/3697c6aa038b3c087400e798f416a1d7/view.pic&quot;&gt;&lt;img src=&quot;4022.gif&quot; title=&quot;743 КБ&quot; width=&quot;226&quot; height=&quot;151&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;
   &lt;td width=246 valign=top&gt;&lt;p align=center style=&#039;text-align:center&#039;&gt;&lt;a href=&quot;http://www.e1.ru/fun/photo/view_pic.php/o/8b8edb34ed5dd22feb613a0241314033/view.pic&quot;&gt;&lt;img src=&quot;4023.gif&quot; title=&quot;793 КБ&quot; width=&quot;226&quot; height=&quot;151&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;
   &lt;td width=246 valign=top&gt;&lt;p align=center style=&#039;text-align:center&#039;&gt;&lt;a href=&quot;http://www.e1.ru/fun/photo/view_pic.php/o/9c066944d037e72ca804b8c34b9123c5/view.pic&quot;&gt;&lt;img src=&quot;4024.gif&quot; title=&quot;775 КБ&quot; width=&quot;226&quot; height=&quot;151&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
)

Newhtmltext := RegExReplace(htmltext, &quot;(title=&quot;&quot;).*?(&quot;&quot; width)&quot;, &quot;$1&quot; Newtitle &quot;$2&quot;, &quot;&quot;, 1)
MsgBox, % Newhtmltext</code></pre></div></blockquote></div><p>Столкнулся с такой проблемой: при активации скрипта вставки строки в тег [&lt;span class=&quot;style3&quot;&gt;Текст&lt;/span&gt;] всякий раз возникает ошибка, указывающая именно на данную командную строку. Применяю код, который дан в примере:</p><div class="codebox"><pre><code>NewStr := RegExReplace(Haystack, &quot;(&lt;span class=&quot;style3&quot;&gt;&quot;).*?(&quot;&lt;/span&gt;)&quot;, &quot;$1&quot; OutputVar &quot;$2&quot;, &quot;&quot;, 1)</code></pre></div><p>Что делаю не так? И как исправить ошибку?</p>]]></content>
			<author>
				<name><![CDATA[Эдвард]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27032</uri>
			</author>
			<updated>2011-06-25T18:05:41Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49428#p49428</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Непростая задача с копипастом]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49412#p49412" />
			<content type="html"><![CDATA[<p>OFF: <strong>Эдвард</strong>, суть процесса познания, дающего в итоге бесценный опыт — в непрерывной череде совершаемых ошибок и откровений. Вообще, опыт — это не столько наше знание о том, как нужно делать, но, <em>прежде всего</em>, знание того, как (и почему) нельзя делать. Так что, не переживайте по этому поводу — это нормально.</p><p>P.S. У нас в разделе Коммьюнити была большая подборка на тему: «Чтобы получить правильный ответ — нужно правильно задать вопрос, чтобы правильно задать вопрос — нужно знать большую часть ответа». Жаль, удалили в процессе чистки.</p>]]></content>
			<author>
				<name><![CDATA[alexii]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=1844</uri>
			</author>
			<updated>2011-06-25T04:27:09Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49412#p49412</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Непростая задача с копипастом]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49411#p49411" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>teadrinker пишет:</cite><blockquote><p>Следует как следует разобраться с <em>Loop, parse</em> на примерах, которых на форуме достаточно.</p></blockquote></div><p>Примеров по данной программе, к сожалению, крайне мало. Выуживать информацию приходится по крупицам. Мозги иногда просто закипают.</p><p>Вот полный скрипт однострочного копирования, который с горем пополам удалось вывести:</p><div class="codebox"><pre><code>#c::
FileReadLine, OutputVar, E:\Мастерская\Сайт\39\4.txt, 1
    MsgBox, %OutputVar%
FileReadLine, Haystack, E:\Мастерская\Сайт\39\400.html, 89
    MsgBox, %Haystack%
NewStr := RegExReplace(Haystack, &quot;(title=&quot;&quot;).*?(&quot;&quot; width)&quot;, &quot;$1&quot; OutputVar &quot;$2&quot;)
MsgBox, % NewStr

FileRead, InputVar, E:\Мастерская\Сайт\39\400.html
MsgBox, %InputVar%
Replacement = %NewStr%
Loop, parse, InputVar, `n, `r
   NewString .= (A_Index = 89 ? Replacement : A_LoopField) . &quot;`n&quot;
   NewString := RegExReplace(NewString, &quot;(.*)\R$&quot;, &quot;$1&quot;)  
MsgBox, % NewString
FileDelete, E:\Мастерская\Сайт\39\400.html
FileAppend, %NewString%, E:\Мастерская\Сайт\39\400.html</code></pre></div><p>В отличие от примера с буквальными значениями, который приведён Вами выше, в данном случае вместо выражения [A_LoopField = &quot;Третья строка&quot;] применено [A_Index = 89]. Кроме того, пришлось задействовать команду FileDelete, чтобы содержимое html-файла не дублировалось. Такие, казалось бы, мелочи дались большим мыслительным трудом, тогда как небольшая подсказка могла значительно ускорить процесс познания.</p>]]></content>
			<author>
				<name><![CDATA[Эдвард]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27032</uri>
			</author>
			<updated>2011-06-24T22:09:28Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49411#p49411</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Непростая задача с копипастом]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49410#p49410" />
			<content type="html"><![CDATA[<p>Следует как следует разобраться с <em>Loop, parse</em> на примерах, которых на форуме достаточно.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2011-06-24T21:09:23Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49410#p49410</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Непростая задача с копипастом]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49399#p49399" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>teadrinker пишет:</cite><blockquote><p>1. В первой строке заменится значение <em>title</em></p></blockquote></div><p>Спасибо! С этим понятно.</p><div class="quotebox"><cite>teadrinker пишет:</cite><blockquote><p>2</p></blockquote></div><p>А вот здесь застопорился, т. к. в приведённом примере скрипта производятся операции с буквальными значениями, а в моём случае необходимо разбирать именно переменную (в которой весь html), назначая определённую строку для замены. Чисто теоретически код мог бы выглядеть вот так:</p><div class="codebox"><pre><code>FileRead, InputVar, E:\Мастерская\Сайт\39\400.html ; чтение html-файла (запись в переменную InputVar)
Replacement = %NewStr% ; подставляемая строка
Loop, parse, InputVar, `n, `r ; разбор содержимого html-файла
If A_Index = 2 ; «если вторая строка»
   NewString .= (A_LoopField = &quot;&quot; ? Replacement : A_LoopField) . &quot;`n&quot; ; вставка новой строки вместо второй в содержимом html-файла
   NewString1 := RegExReplace(NewString1, &quot;(.*)\R$&quot;, &quot;$1&quot;) ; правка  
MsgBox, % NewString ; показ нового содержимого html-файла</code></pre></div><p>Однако в данном случае с html-файлом ничего не происходит – он остаётся в прежнем виде.</p><p>Отсюда вопрос: что я делаю не так? Какие командные строки следует исправить?</p>]]></content>
			<author>
				<name><![CDATA[Эдвард]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27032</uri>
			</author>
			<updated>2011-06-24T13:15:10Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49399#p49399</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Непростая задача с копипастом]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49382#p49382" />
			<content type="html"><![CDATA[<p>1. В первой строке заменится значение <em>title</em>:<br /></p><div class="codebox"><pre><code>Newtitle = 1000 КБ

htmltext =
(
&lt;tr&gt;
   &lt;td width=246 valign=top&gt;&lt;p align=center style=&#039;text-align:center&#039;&gt;&lt;a href=&quot;http://www.e1.ru/fun/photo/view_pic.php/o/c5eecd1ed3b251440c7002b626da41c5/view.pic&quot;&gt;&lt;img src=&quot;4021.gif&quot; title=&quot;897 КБ&quot; width=&quot;226&quot; height=&quot;151&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;
   &lt;td width=246 valign=top&gt;&lt;p align=center style=&#039;text-align:center&#039;&gt;&lt;a href=&quot;http://www.e1.ru/fun/photo/view_pic.php/o/3697c6aa038b3c087400e798f416a1d7/view.pic&quot;&gt;&lt;img src=&quot;4022.gif&quot; title=&quot;743 КБ&quot; width=&quot;226&quot; height=&quot;151&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;
   &lt;td width=246 valign=top&gt;&lt;p align=center style=&#039;text-align:center&#039;&gt;&lt;a href=&quot;http://www.e1.ru/fun/photo/view_pic.php/o/8b8edb34ed5dd22feb613a0241314033/view.pic&quot;&gt;&lt;img src=&quot;4023.gif&quot; title=&quot;793 КБ&quot; width=&quot;226&quot; height=&quot;151&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;
   &lt;td width=246 valign=top&gt;&lt;p align=center style=&#039;text-align:center&#039;&gt;&lt;a href=&quot;http://www.e1.ru/fun/photo/view_pic.php/o/9c066944d037e72ca804b8c34b9123c5/view.pic&quot;&gt;&lt;img src=&quot;4024.gif&quot; title=&quot;775 КБ&quot; width=&quot;226&quot; height=&quot;151&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
)

Newhtmltext := RegExReplace(htmltext, &quot;(title=&quot;&quot;).*?(&quot;&quot; width)&quot;, &quot;$1&quot; Newtitle &quot;$2&quot;, &quot;&quot;, 1)
MsgBox, % Newhtmltext</code></pre></div><p>2:<br /></p><div class="codebox"><pre><code>Replacement = Изменённая строка

String =
(
Первая строка
Вторая строка
Третья строка
Четвертая строка
)

; заменяем строчку &quot;Третья строка&quot;
Loop, parse, String, `n, `r
   NewString .= (A_LoopField = &quot;Третья строка&quot; ? Replacement : A_LoopField) . &quot;`n&quot;
   
; удаляем последний перенос строки, если существует:
NewString1 := RegExReplace(NewString1, &quot;(.*)\R$&quot;, &quot;$1&quot;)  
MsgBox, % NewString</code></pre></div>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2011-06-23T23:50:58Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49382#p49382</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Непростая задача с копипастом]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49366#p49366" />
			<content type="html"><![CDATA[<p>Заранее благодарю за ответ.</p>]]></content>
			<author>
				<name><![CDATA[Эдвард]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27032</uri>
			</author>
			<updated>2011-06-23T17:28:58Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49366#p49366</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Непростая задача с копипастом]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49364#p49364" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>teadrinker пишет:</cite><blockquote><p>нужно задать вопрос.</p></blockquote></div><p>Хорошо.</p><p>1. Какое выражение (шаблон) применить для замены строкой-донором подстроки между определёнными группами символов (например, [title=&quot;] и [&quot; width)]? Если ещё точнее, какими символами заменить точку, заключённую в кавычки, в данной командной строке:</p><div class="codebox"><pre><code>NewStr := RegExReplace(Haystack, &quot;.&quot;, OutputVar)</code></pre></div><p>?</p><p>2. Какой скрипт применить для полной замены одной строки в содержимом html-файла одной строкой из переменной?</p>]]></content>
			<author>
				<name><![CDATA[Эдвард]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27032</uri>
			</author>
			<updated>2011-06-23T17:24:51Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49364#p49364</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Непростая задача с копипастом]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49344#p49344" />
			<content type="html"><![CDATA[<p><strong>Эдвард</strong>, чтобы получить ответ, нужно задать вопрос.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2011-06-23T10:36:34Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49344#p49344</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Непростая задача с копипастом]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49329#p49329" />
			<content type="html"><![CDATA[<p>Решил пока немного упростить задачу, применив скрипт лишь к одной строке:</p><div class="codebox"><pre><code>#c::
FileReadLine, OutputVar, E:\Мастерская\Сайт\39\4.txt, 8
    MsgBox, %OutputVar%

FileReadLine, Haystack, E:\Мастерская\Сайт\39\400.html, 2
    MsgBox, %Haystack%

NewStr := RegExReplace(Haystack, &quot;.&quot;, OutputVar)

File = E:\Мастерская\Сайт\39\400.html
Str = %NewStr%
Loop, Read, %File%
{
    If A_Index = 2
        Text .= Str . &quot;`n&quot;
    Text .= A_LoopReadLine . &quot;`n&quot;
}
FileDelete, %File%
FileAppend, %Text%, %File%
MsgBox, Готово.</code></pre></div><p>Но столкнулся с проблемой шаблонов. Т. е. для моего случая, когда донорская блокнотная строка должна вставляться в html-строку между (!) определёнными символами (группами символов) (в данном случае, между title=&quot; и &quot; width), ничего подходящего не нашлось (в основном почему-то все шаблоны затёсаны на операции именно с заменяемым полем, а не его окружением).</p><p>И ещё небольшой глючок: в конце всей операции как бы исправленная строка встаёт не вместо второй строки html-файла, а добавляется между первой и второй. Видимо, прежде чем вставлять исправленную строку, надо сначала удалить старую, но такого скрипта пока не вычислил.</p>]]></content>
			<author>
				<name><![CDATA[Эдвард]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27032</uri>
			</author>
			<updated>2011-06-22T23:14:41Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49329#p49329</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Непростая задача с копипастом]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49324#p49324" />
			<content type="html"><![CDATA[<p>Присвоить можно <a href="http://script-coding.com/AutoHotkey/Variables.1.0.46.07.html#1">любое допустимое имя</a>. В справке, правда, имена переменных зачем-то переведены на русский (!?!), лучше использовать латиницу.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2011-06-22T18:38:51Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49324#p49324</id>
		</entry>
</feed>
