<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: Разделение слова по буквам]]></title>
		<link>https://forum.script-coding.com/viewtopic.php?id=16731</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=16731&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Разделение слова по буквам».]]></description>
		<lastBuildDate>Mon, 20 Dec 2021 06:02:08 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Разделение слова по буквам]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=151316#p151316</link>
			<description><![CDATA[<div class="codebox"><pre><code>
Str = Привет
b := StrSplit(Str)
for i,n in StrSplit(Str)
	str_out := str_out . n . &quot;`n&quot;
MsgBox,% str_out
</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (andrey.a.polyakov.b2c)]]></author>
			<pubDate>Mon, 20 Dec 2021 06:02:08 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=151316#p151316</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Разделение слова по буквам]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=150661#p150661</link>
			<description><![CDATA[<p><strong>Taveron</strong> Большое спасибо!</p>]]></description>
			<author><![CDATA[null@example.com (Vsevolod)]]></author>
			<pubDate>Wed, 17 Nov 2021 17:01:26 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=150661#p150661</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Разделение слова по буквам]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=150659#p150659</link>
			<description><![CDATA[<p><strong>Phoenixxx_Czar</strong>, спасибо за подсказку.<br />Тогда так:<br /></p><div class="codebox"><pre><code>
F1::
	Str = Привет
	b := StrSplit(Str)
	MsgBox, % b.1 b.2 b.3 b.4 b.5 b.6
	Return
</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Taveron)]]></author>
			<pubDate>Wed, 17 Nov 2021 14:29:31 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=150659#p150659</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Разделение слова по буквам]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=150658#p150658</link>
			<description><![CDATA[<p><strong>Taveron</strong>, для этого есть strSplit.</p>]]></description>
			<author><![CDATA[null@example.com (Phoenixxx_Czar)]]></author>
			<pubDate>Wed, 17 Nov 2021 14:05:09 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=150658#p150658</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Разделение слова по буквам]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=150654#p150654</link>
			<description><![CDATA[<div class="codebox"><pre><code>
F1::
	b := []
	Str = Привет
	Loop, Parse, Str
		b.Push(A_LoopField)

	MsgBox, % b.1 b.2 b.3 b.4 b.5 b.6
	Return
</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Taveron)]]></author>
			<pubDate>Wed, 17 Nov 2021 13:44:04 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=150654#p150654</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Разделение слова по буквам]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=150653#p150653</link>
			<description><![CDATA[<p><strong>Phoenixxx_Czar</strong> Мне не удобно работать с массивами, но тут мне и не важно, в массиве это всё или нет.</p>]]></description>
			<author><![CDATA[null@example.com (Vsevolod)]]></author>
			<pubDate>Wed, 17 Nov 2021 13:39:31 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=150653#p150653</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Разделение слова по буквам]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=150650#p150650</link>
			<description><![CDATA[<p>Почему массив не подходит? С ним удобнее работать как минимум.</p>]]></description>
			<author><![CDATA[null@example.com (Phoenixxx_Czar)]]></author>
			<pubDate>Wed, 17 Nov 2021 06:13:24 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=150650#p150650</guid>
		</item>
		<item>
			<title><![CDATA[AHK: Разделение слова по буквам]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=150649#p150649</link>
			<description><![CDATA[<p>Всем привет. Нужен скрипт разбивающий слово побуквенно по разным переменным.<br />Примерно вот так:<br /></p><div class="codebox"><pre><code>a := &quot;Привет&quot;

*Скрипт

b1 = П
b2 = р
b3 = и
b4 = в
b5 = е
b6 = т
</code></pre></div><p>Кому не сложно, помогите пожалуйста. Скрипт обязательно должен работать с русскими буквами.</p>]]></description>
			<author><![CDATA[null@example.com (Vsevolod)]]></author>
			<pubDate>Wed, 17 Nov 2021 04:54:03 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=150649#p150649</guid>
		</item>
	</channel>
</rss>
