<?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=9745&amp;type=atom" />
	<updated>2014-06-27T14:50:38Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=9745</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Разбивка переменной на части]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=84295#p84295" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>tmp = Nickname:PassWord:Email
StringSplit, tmp_array, tmp, :
msgbox % Login := tmp_array1</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2014-06-27T14:50:38Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=84295#p84295</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Разбивка переменной на части]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=84293#p84293" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>
tmp = &quot;Nickname:PassWord:Email&quot;
Loop, parse, tmp, `:
{
MsgBox, Ник %A_Index%: %A_LoopField%
} 
return</code></pre></div><p>У меня прекрасно все разбирает, но как задать им переменные теперь? У меня не получается.</p>]]></content>
			<author>
				<name><![CDATA[tuma4ok]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=32022</uri>
			</author>
			<updated>2014-06-27T14:33:47Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=84293#p84293</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Разбивка переменной на части]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=84291#p84291" />
			<content type="html"><![CDATA[<p>Спасибо.</p>]]></content>
			<author>
				<name><![CDATA[tuma4ok]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=32022</uri>
			</author>
			<updated>2014-06-27T14:16:58Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=84291#p84291</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Разбивка переменной на части]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=84287#p84287" />
			<content type="html"><![CDATA[<p><a href="http://ahkscript.org/docs/commands/StringSplit.htm">http://ahkscript.org/docs/commands/StringSplit.htm</a></p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2014-06-27T13:49:01Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=84287#p84287</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Разбивка переменной на части]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=84284#p84284" />
			<content type="html"><![CDATA[<p>Простите что так много вопросов, но все же, у меня новый вопрос.<br />У меня есть переменная <strong>data</strong>, выглядит она вот так:<br /></p><div class="codebox"><pre><code>data = &quot;tumkin:tumkinpassword:tumkinemail&quot;</code></pre></div><p>Мне требуется разбить эту переменную на 3 части <strong>Login</strong>, <strong>Password</strong>, <strong>Email</strong><br />Должно получится как-то так:<br /></p><div class="codebox"><pre><code>data = &quot;tumkin:tumkinpassword:tumkinemail&quot;
Магическое действие
Login = tumkin
Password = tumkinpassword
Email = tumkinemail</code></pre></div>]]></content>
			<author>
				<name><![CDATA[tuma4ok]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=32022</uri>
			</author>
			<updated>2014-06-27T13:00:22Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=84284#p84284</id>
		</entry>
</feed>
