<?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=17769&amp;type=atom" />
	<updated>2023-05-15T14:48:54Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=17769</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Определение закрывающего тега]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=158228#p158228" />
			<content type="html"><![CDATA[<p>Обязательно ли объявлять </p><div class="codebox"><pre><code>document := ComObjCreate(&quot;HTMLFile&quot;)</code></pre></div><p> каждый раз, или можно один раз?</p>]]></content>
			<author>
				<name><![CDATA[john_dease]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=42972</uri>
			</author>
			<updated>2023-05-15T14:48:54Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=158228#p158228</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Определение закрывающего тега]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=158226#p158226" />
			<content type="html"><![CDATA[<p>Пока что такой вариант: в переменной var1 определяются границы нужных тегов, после чего происходит перебор этих тегов в &quot;While Pos&quot;. В процессе перебора переменная var1 дополняется переменной var2, в которой так же определяются границы тегов, выводимые в качестве продолжения. Но получилось не юзабельно, может, можно упростить.<br /></p><div class="codebox"><pre><code>var1 =
(
&lt;div class=&quot;tweet-body&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;111&lt;/div&gt;&lt;/div&gt;
44
&lt;div class=&quot;tweet-body&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;222&lt;/div&gt;&lt;/div&gt;
&lt;div class=&quot;tweet-body&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;333&lt;/div&gt;&lt;/div&gt;
&lt;div class=&quot;tweet-body&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;444&lt;/div&gt;&lt;/div&gt;
&lt;div class=&quot;tweet-body&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;555&lt;/div&gt;&lt;/div&gt;|
)

var2 =
(
&lt;div class=&quot;tweet-body&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;666&lt;/div&gt;&lt;/div&gt;
)

document := ComObjCreate(&quot;HTMLFile&quot;)
document.write(var1)

elements := document.getElementsByClassName(&quot;tweet-body&quot;)
loop, % elements.length
{
   tag := % elements[A_Index-1].outerHTML ;outerHTML/innerText
   StringReplace, var1, var1, %tag%, &lt;%tag%&gt;, All
}

;msgbox % var1

match := &quot;&quot;, match1 := &quot;&quot;, Pos := 0
While Pos := RegExMatch(var1, &quot;s)&lt;(&lt;[^&gt;]*class=&quot;&quot;tweet-body&quot;&quot;.*?&lt;/div&gt;)&gt;&quot;, match, Pos + 1)
{
   document := ComObjCreate(&quot;HTMLFile&quot;)
   document.write(var2)

   elements := document.getElementsByClassName(&quot;tweet-body&quot;)
   loop, % elements.length
   {
      tag := % elements[A_Index-1].outerHTML ;outerHTML/innerText
      StringReplace, var2, var2, %tag%, &lt;%tag%&gt;, All
   }

   StringReplace, var1, var1, |, %var2%, All

   msgbox % match1
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[john_dease]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=42972</uri>
			</author>
			<updated>2023-05-15T14:46:37Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=158226#p158226</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Определение закрывающего тега]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=158225#p158225" />
			<content type="html"><![CDATA[<p>То есть, как перебирать теги из дополняемой переменной.</p>]]></content>
			<author>
				<name><![CDATA[john_dease]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=42972</uri>
			</author>
			<updated>2023-05-15T14:02:35Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=158225#p158225</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Определение закрывающего тега]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=158224#p158224" />
			<content type="html"><![CDATA[<p>Осуществимо ли следующее для данного кода или другого метода - теги с классом &quot;tweet-body&quot; из переменной HTMLvar перебираются, и во время этого перебора переменная HTMLvar дополняется новым тегом (символ &quot;|&quot; заменяется на новый тег), который тоже должен попасть в перебор? </p><div class="codebox"><pre><code>HTMLvar =
(
&lt;div class=&quot;tweet-body&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;111&lt;/div&gt;&lt;/div&gt;
&lt;div class=&quot;tweet-body&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;222&lt;/div&gt;&lt;/div&gt;
&lt;div class=&quot;tweet-body&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;333&lt;/div&gt;&lt;/div&gt;
&lt;div class=&quot;tweet-body&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;444&lt;/div&gt;&lt;/div&gt;
&lt;div class=&quot;tweet-body&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;555&lt;/div&gt;&lt;/div&gt;|
)

document := ComObjCreate(&quot;HTMLFile&quot;)
document.write(HTMLvar)

elements := document.getElementsByClassName(&quot;tweet-body&quot;)
loop, % elements.length
{
   tag := % elements[A_Index-1].outerHTML ;outerHTML/innerText
   StringReplace, HTMLvar, HTMLvar, |, &lt;div class=&quot;tweet-body&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;666&lt;/div&gt;&lt;/div&gt;, All
   msgbox % tag
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[john_dease]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=42972</uri>
			</author>
			<updated>2023-05-15T14:00:58Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=158224#p158224</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Определение закрывающего тега]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=158216#p158216" />
			<content type="html"><![CDATA[<p>В предыдущем сообщении перебирается тег с одним классом, а как одновременно перебирать теги с двумя разными классами, как в примере?<br /></p><div class="codebox"><pre><code>RTxt=
(
&lt;div class=&quot;timeline-item &quot;&gt;
              &lt;a class=&quot;tweet-link&quot; href=&quot;/htGOIW/status/1503785730207793159#m&quot;&gt;&lt;/a&gt;
              &lt;div class=&quot;tweet-body&quot;&gt;
                &lt;div&gt;&lt;div class=&quot;tweet-header&quot;&gt;
                    &lt;a class=&quot;tweet-avatar&quot; href=&quot;/htGOIW&quot;&gt;&lt;img class=&quot;avatar round&quot; src=&quot;/pic/profile_images%2F1633116033539096585%2FA_O5JZKS_bigger.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;
                    &lt;div class=&quot;tweet-name-row&quot;&gt;
                      &lt;div class=&quot;fullname-and-username&quot;&gt;
                        &lt;a class=&quot;fullname&quot; href=&quot;/htGOIW&quot; title=&quot;ehoba&quot;&gt;ehoba&lt;/a&gt;
                        &lt;a class=&quot;username&quot; href=&quot;/htGOIW&quot; title=&quot;@htGOIW&quot;&gt;@htGOIW&lt;/a&gt;
                      &lt;/div&gt;
                      &lt;span class=&quot;tweet-date&quot;&gt;&lt;a href=&quot;/htGOIW/status/1503785730207793159#m&quot; title=&quot;Mar 15, 2022 · 5:30 PM UTC&quot;&gt;15 Mar 2022&lt;/a&gt;&lt;/span&gt;
                    &lt;/div&gt;
                  &lt;/div&gt;&lt;/div&gt;
                &lt;div class=&quot;tweet-content media-body&quot; dir=&quot;auto&quot;&gt;The interesting thing is that they can do the same thing with Japanese myths too. Daijiro Morohoshi did it, and that&#039;s
one of NGE&#039;s direct inspiration sources.
I suppose the attitudes towards religions in general affect that difference.&lt;/div&gt;
                &lt;div class=&quot;tweet-stats&quot;&gt;
                  &lt;span class=&quot;tweet-stat&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;&lt;span class=&quot;icon-comment&quot; title=&quot;&quot;&gt;&lt;/span&gt; 1&lt;/div&gt;&lt;/span&gt;
                  &lt;span class=&quot;tweet-stat&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;&lt;span class=&quot;icon-retweet&quot; title=&quot;&quot;&gt;&lt;/span&gt; 1&lt;/div&gt;&lt;/span&gt;
                  &lt;span class=&quot;tweet-stat&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;&lt;span class=&quot;icon-quote&quot; title=&quot;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;
                  &lt;span class=&quot;tweet-stat&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;&lt;span class=&quot;icon-heart&quot; title=&quot;&quot;&gt;&lt;/span&gt; 4&lt;/div&gt;&lt;/span&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;
)
document := ComObjCreate(&quot;HTMLFile&quot;)
document.write(RTxt)

elements1 := document.getElementsByClassName(&quot;icon-comment&quot;)
elements2 := document.getElementsByClassName(&quot;icon-retweet&quot;)
loop, % elements.length
{
   e1 := % elements1[A_Index-1].outerHTML
   e2 := % elements2[A_Index-1].outerHTML

   msgbox %e1%`n%e2%
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[john_dease]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=42972</uri>
			</author>
			<updated>2023-05-14T20:29:55Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=158216#p158216</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Определение закрывающего тега]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=158093#p158093" />
			<content type="html"><![CDATA[<p>Вот вариант с авто-определением тега и перебором:<br /></p><div class="codebox"><pre><code>DivFrag =
(
&lt;div class=&quot;tweet-body&quot;&gt;
  &lt;div&gt;&lt;div class=&quot;tweet-header&quot;&gt;
      &lt;a class=&quot;tweet-avatar&quot; href=&quot;/GoITO&quot;&gt;&lt;img class=&quot;avatar round&quot; src=&quot;/pic/profile_images%2F1601252088977461249%2FAueLzD04_bigger.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;
      &lt;div class=&quot;tweet-name-row&quot;&gt;
        &lt;div class=&quot;fullname-and-username&quot;&gt;
          &lt;a class=&quot;fullname&quot; href=&quot;/GoITO&quot; title=&quot;伊藤剛&quot;&gt;11&lt;/a&gt;
          &lt;a class=&quot;username&quot; href=&quot;/GoITO&quot; title=&quot;@GoITO&quot;&gt;@11&lt;/a&gt;
        &lt;/div&gt;
        &lt;span class=&quot;tweet-date&quot;&gt;&lt;a href=&quot;/&quot; title=&quot;May 3, 2023 · 4:48 PM UTC&quot;&gt;May 3&lt;/a&gt;&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;&lt;/div&gt;
  &lt;div class=&quot;tweet-content media-body&quot; dir=&quot;auto&quot;&gt;1999&lt;/div&gt;
  &lt;div class=&quot;tweet-stats&quot;&gt;
    &lt;span class=&quot;tweet-stat&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;&lt;span class=&quot;icon-comment&quot; title=&quot;&quot;&gt;&lt;/span&gt; 2&lt;/div&gt;&lt;/span&gt;
    &lt;span class=&quot;tweet-stat&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;&lt;span class=&quot;icon-retweet&quot; title=&quot;&quot;&gt;&lt;/span&gt; 110&lt;/div&gt;&lt;/span&gt;
    &lt;span class=&quot;tweet-stat&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;&lt;span class=&quot;icon-quote&quot; title=&quot;&quot;&gt;&lt;/span&gt; 1&lt;/div&gt;&lt;/span&gt;
    &lt;span class=&quot;tweet-stat&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;&lt;span class=&quot;icon-heart&quot; title=&quot;&quot;&gt;&lt;/span&gt; 332&lt;/div&gt;&lt;/span&gt;
  &lt;/div&gt;
&lt;/div&gt;
11
&lt;div class=&quot;tweet-body&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;22 332&lt;/div&gt;&lt;/div&gt;
)

document := ComObjCreate(&quot;HTMLFile&quot;)
document.write(DivFrag)

elements := document.getElementsByClassName(&quot;tweet-body&quot;)
loop, % elements.length
   msgbox, % elements[A_Index-1].outerHTML</code></pre></div>]]></content>
			<author>
				<name><![CDATA[john_dease]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=42972</uri>
			</author>
			<updated>2023-05-07T23:51:29Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=158093#p158093</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Определение закрывающего тега]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=158086#p158086" />
			<content type="html"><![CDATA[<p>Но опять же, проблема с захватом найденного.</p>]]></content>
			<author>
				<name><![CDATA[john_dease]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=42972</uri>
			</author>
			<updated>2023-05-07T10:11:23Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=158086#p158086</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Определение закрывающего тега]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=158085#p158085" />
			<content type="html"><![CDATA[<p>Теперь вроде перебирает и обрабатывает:<br /></p><div class="codebox"><pre><code>div =
(
              &lt;div class=&quot;tweet-body&quot;&gt;
                &lt;div&gt;&lt;div class=&quot;tweet-header&quot;&gt;
                    &lt;a class=&quot;tweet-avatar&quot; href=&quot;/GoITO&quot;&gt;&lt;img class=&quot;avatar round&quot; src=&quot;/pic/profile_images%2F1601252088977461249%2FAueLzD04_bigger.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;
                    &lt;div class=&quot;tweet-name-row&quot;&gt;
                      &lt;div class=&quot;fullname-and-username&quot;&gt;
                        &lt;a class=&quot;fullname&quot; href=&quot;/GoITO&quot; title=&quot;伊藤剛&quot;&gt;11&lt;/a&gt;
                        &lt;a class=&quot;username&quot; href=&quot;/GoITO&quot; title=&quot;@GoITO&quot;&gt;@11&lt;/a&gt;
                      &lt;/div&gt;
                      &lt;span class=&quot;tweet-date&quot;&gt;&lt;a href=&quot;/&quot; title=&quot;May 3, 2023 · 4:48 PM UTC&quot;&gt;May 3&lt;/a&gt;&lt;/span&gt;
                    &lt;/div&gt;
                  &lt;/div&gt;&lt;/div&gt;
                &lt;div class=&quot;tweet-content media-body&quot; dir=&quot;auto&quot;&gt;1999&lt;/div&gt;
                &lt;div class=&quot;tweet-stats&quot;&gt;
                  &lt;span class=&quot;tweet-stat&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;&lt;span class=&quot;icon-comment&quot; title=&quot;&quot;&gt;&lt;/span&gt; 2&lt;/div&gt;&lt;/span&gt;
                  &lt;span class=&quot;tweet-stat&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;&lt;span class=&quot;icon-retweet&quot; title=&quot;&quot;&gt;&lt;/span&gt; 110&lt;/div&gt;&lt;/span&gt;
                  &lt;span class=&quot;tweet-stat&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;&lt;span class=&quot;icon-quote&quot; title=&quot;&quot;&gt;&lt;/span&gt; 1&lt;/div&gt;&lt;/span&gt;
                  &lt;span class=&quot;tweet-stat&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;&lt;span class=&quot;icon-heart&quot; title=&quot;&quot;&gt;&lt;/span&gt; 332&lt;/div&gt;&lt;/span&gt;
                &lt;/div&gt;
              &lt;/div|1&gt;&lt;/div&gt;&lt;/span&gt;
                &lt;/div&gt;
              &lt;div class=&quot;tweet-body&quot;&gt;&lt;div class=&quot;icon-container&quot;&gt;22 332&lt;/div&gt;&lt;/div|2&gt;
)

Pos := 0
While Pos := RegExMatch(div, &quot;s)(&lt;div class=&quot;&quot;tweet-body&quot;&quot;&gt;)(.*?)(\1|$)&quot;, match, Pos + 1)
{
    new_div := match1 match2

    Poss := 0, n := 0
    While Poss := RegExMatch(new_div, &quot;s)&lt;/?div\b[^&gt;]*&gt;&quot;, match, Poss + 1)
    {
       ;msgbox %match%
       If (match~=&quot;&lt;[^/]&quot;)
          n+=1
       If (match~=&quot;&lt;/&quot;)
          n-=1
       If (n=0) {
          msgbox %match% %n%
          break
       }
    }
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[john_dease]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=42972</uri>
			</author>
			<updated>2023-05-07T10:09:57Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=158085#p158085</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Определение закрывающего тега]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=158084#p158084" />
			<content type="html"><![CDATA[<p>Видимо, тут нужен перебор по другому такому же тегу, либо концу вхождения. После чего уже разбирать найденное.<br /></p><div class="codebox"><pre><code>Pos := 0, n := 0
While Pos := RegExMatch(div, &quot;s)(&lt;div class=&quot;&quot;tweet-body&quot;&quot;&gt;)(.*?)(\1|$)&quot;, match, Pos + 1)
{
    msgbox %match1%%match2%
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[john_dease]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=42972</uri>
			</author>
			<updated>2023-05-07T08:43:42Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=158084#p158084</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Определение закрывающего тега]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=158083#p158083" />
			<content type="html"><![CDATA[<p><strong>Malcev</strong></p><p>Но так последний &lt;div class=&quot;tweet-body&quot;&gt; будет пропущен? Ведь после него не будет такого же тега? А еще между &lt;div class=&quot;tweet-body&quot;&gt;(.+?)&lt;/div&gt; могут быть другие лишние теги.</p>]]></content>
			<author>
				<name><![CDATA[john_dease]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=42972</uri>
			</author>
			<updated>2023-05-07T08:19:05Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=158083#p158083</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Определение закрывающего тега]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=158076#p158076" />
			<content type="html"><![CDATA[<p>Как-то можно узнать позицию в тексте для первого открывающего &lt;div&gt; и последнего закрывающего &lt;/div&gt;. (Только я подзабыл как. <span class="postimg"><img src="https://i.smiles2k.net/aiwan_smiles/meeting.gif" alt="https://i.smiles2k.net/aiwan_smiles/meeting.gif" /></span>)<br />Из позиции последнего вычитаем позицию первого - получаем длину интересующего нас фрагмента. Потом считываем (тоже подзабыл, вроде командой <strong>SubStr()</strong>) в переменную блок символов, начиная с позиции первого открывающего &lt;div&gt; и длиной, равной длине интересующего нас фрагмента. Таким образом в переменной окажется блок, который требовалось захватить.</p>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2023-05-06T20:13:55Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=158076#p158076</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Определение закрывающего тега]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=158075#p158075" />
			<content type="html"><![CDATA[<p>Пробегайтесь регуляркой от &lt;div class=&quot;tweet-body&quot;&gt; до &lt;div class=&quot;tweet-body&quot;&gt;.<br />Считать div тут не нужно.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2023-05-06T19:57:26Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=158075#p158075</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Определение закрывающего тега]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=158074#p158074" />
			<content type="html"><![CDATA[<p>Да. Но в коде выше не учтено, что нужен не любой div, а с определенным классом. То есть, видимо надо сначала получить кусок от заданного тега до конца фрагмента, а уже потом подсчитывать.</p>]]></content>
			<author>
				<name><![CDATA[john_dease]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=42972</uri>
			</author>
			<updated>2023-05-06T18:59:03Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=158074#p158074</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Определение закрывающего тега]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=158073#p158073" />
			<content type="html"><![CDATA[<p>Как понять &quot;захватить найденное&quot;? Требуется поместить в переменную всё то, что лежит между <em><strong>первым открывающим</strong></em> &lt;div&gt; и <em><strong>евоным закрывающим</strong></em> &lt;/div&gt;?</p>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2023-05-06T18:48:27Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=158073#p158073</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Определение закрывающего тега]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=158058#p158058" />
			<content type="html"><![CDATA[<p>Всё-таки, не работает. Видимо, While не подходит для этой задачи.</p>]]></content>
			<author>
				<name><![CDATA[john_dease]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=42972</uri>
			</author>
			<updated>2023-05-05T21:08:53Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=158058#p158058</id>
		</entry>
</feed>
