<?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=16731&amp;type=atom" />
	<updated>2021-12-20T06:02:08Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=16731</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Разделение слова по буквам]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=151316#p151316" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[andrey.a.polyakov.b2c]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=42228</uri>
			</author>
			<updated>2021-12-20T06:02:08Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=151316#p151316</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Разделение слова по буквам]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=150661#p150661" />
			<content type="html"><![CDATA[<p><strong>Taveron</strong> Большое спасибо!</p>]]></content>
			<author>
				<name><![CDATA[Vsevolod]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40918</uri>
			</author>
			<updated>2021-11-17T17:01:26Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=150661#p150661</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Разделение слова по буквам]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=150659#p150659" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[Taveron]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=41949</uri>
			</author>
			<updated>2021-11-17T14:29:31Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=150659#p150659</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Разделение слова по буквам]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=150658#p150658" />
			<content type="html"><![CDATA[<p><strong>Taveron</strong>, для этого есть strSplit.</p>]]></content>
			<author>
				<name><![CDATA[Phoenixxx_Czar]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=34426</uri>
			</author>
			<updated>2021-11-17T14:05:09Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=150658#p150658</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Разделение слова по буквам]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=150654#p150654" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[Taveron]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=41949</uri>
			</author>
			<updated>2021-11-17T13:44:04Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=150654#p150654</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Разделение слова по буквам]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=150653#p150653" />
			<content type="html"><![CDATA[<p><strong>Phoenixxx_Czar</strong> Мне не удобно работать с массивами, но тут мне и не важно, в массиве это всё или нет.</p>]]></content>
			<author>
				<name><![CDATA[Vsevolod]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40918</uri>
			</author>
			<updated>2021-11-17T13:39:31Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=150653#p150653</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Разделение слова по буквам]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=150650#p150650" />
			<content type="html"><![CDATA[<p>Почему массив не подходит? С ним удобнее работать как минимум.</p>]]></content>
			<author>
				<name><![CDATA[Phoenixxx_Czar]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=34426</uri>
			</author>
			<updated>2021-11-17T06:13:24Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=150650#p150650</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Разделение слова по буквам]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=150649#p150649" />
			<content type="html"><![CDATA[<p>Всем привет. Нужен скрипт разбивающий слово побуквенно по разным переменным.<br />Примерно вот так:<br /></p><div class="codebox"><pre><code>a := &quot;Привет&quot;

*Скрипт

b1 = П
b2 = р
b3 = и
b4 = в
b5 = е
b6 = т
</code></pre></div><p>Кому не сложно, помогите пожалуйста. Скрипт обязательно должен работать с русскими буквами.</p>]]></content>
			<author>
				<name><![CDATA[Vsevolod]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40918</uri>
			</author>
			<updated>2021-11-17T04:54:03Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=150649#p150649</id>
		</entry>
</feed>
