<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; RegExMatch]]></title>
	<link rel="self" href="http://forum.script-coding.com/extern.php?action=feed&amp;tid=12139&amp;type=atom" />
	<updated>2016-11-18T12:14:22Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.script-coding.com/viewtopic.php?id=12139</id>
		<entry>
			<title type="html"><![CDATA[Re: RegExMatch]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=109226#p109226" />
			<content type="html"><![CDATA[<div class="quotebox"><blockquote><p>Malcev не совсем понимаю применение цикла, так как строка так или иначе будет порезана на массив</p></blockquote></div><p>Не понимаю, что вы имеете в виду.<br /></p><div class="quotebox"><blockquote><p>второй пример не совсем удачный из-за наличия тега &lt;span&gt; в исходном тексте.</p></blockquote></div><p>Второй пример выполняет условия задачи, если я правильно ее понял:<br /></p><div class="quotebox"><blockquote><p>чтоб шаблон RegExMatch извлекал данные после переменной %name% где переменная name это [REC]DIVERSE</p></blockquote></div>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2016-11-18T12:14:22Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=109226#p109226</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: RegExMatch]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=109222#p109222" />
			<content type="html"><![CDATA[<p><strong>Malcev</strong> не совсем понимаю применение цикла, так как строка так или иначе будет порезана на массив. Ну и второй пример не совсем удачный из-за наличия тега &lt;span&gt; в исходном тексте.</p>]]></content>
			<author>
				<name><![CDATA[alekksss]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33684</uri>
			</author>
			<updated>2016-11-18T04:06:04Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=109222#p109222</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: RegExMatch]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=109136#p109136" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>var=
(
&lt;/tr&gt;&lt;tr class=&quot;displayed&quot;&gt;
	&lt;td&gt;&lt;span class=&quot;user-icon&quot;&gt;&lt;/span&gt; [REC]DIVERSE&lt;/td&gt;
	&lt;td&gt;18 lvl&lt;/td&gt;
	&lt;td&gt;Black Kings&lt;/td&gt;
	&lt;td&gt;Pac&lt;/td&gt;
)
match := &quot;&quot;, Pos := 1
While Pos := RegexMatch(var, &quot;&gt;([^&gt;]*)&lt;/td&gt;&quot;, match, Pos+StrLen(match))
   msgbox &quot;%match1%&quot;</code></pre></div><p>Либо так:<br /></p><div class="codebox"><pre><code>match := &quot;&quot;, Pos := 1
While Pos := RegexMatch(var, &quot;&lt;td&gt;([^&gt;]*)&lt;/td&gt;&quot;, match, Pos+StrLen(match))
   msgbox &quot;%match1%&quot;</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2016-11-15T13:58:26Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=109136#p109136</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: RegExMatch]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=109135#p109135" />
			<content type="html"><![CDATA[<p>Помогите пожалуйста)</p>]]></content>
			<author>
				<name><![CDATA[mr.ramser]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33354</uri>
			</author>
			<updated>2016-11-15T13:27:21Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=109135#p109135</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[RegExMatch]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=109030#p109030" />
			<content type="html"><![CDATA[<p>Ребят, помогите, мне нужно с помощью RegExMatch извлеч из вот этого:</p><div class="codebox"><pre><code>&lt;/tr&gt;&lt;tr class=&quot;displayed&quot;&gt;
	&lt;td&gt;&lt;span class=&quot;user-icon&quot;&gt;&lt;/span&gt; [REC]DIVERSE&lt;/td&gt;
	&lt;td&gt;18 lvl&lt;/td&gt;
	&lt;td&gt;Black Kings&lt;/td&gt;
	&lt;td&gt;Pac&lt;/td&gt;</code></pre></div><p> такие данные как: </p><div class="codebox"><pre><code>18 lvl, Black Kings, Pac</code></pre></div><p> и чтоб шаблон RegExMatch извлекал данные после переменной %name% где переменная name это [REC]DIVERSE, не судите строго, всего лишь начинаю по тихоньку разбираться в ахк и за ранее спасибо)</p>]]></content>
			<author>
				<name><![CDATA[mr.ramser]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33354</uri>
			</author>
			<updated>2016-11-09T15:58:23Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=109030#p109030</id>
		</entry>
</feed>
