<?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="http://forum.script-coding.com/extern.php?action=feed&amp;tid=13099&amp;type=atom" />
	<updated>2017-11-04T20:44:31Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.script-coding.com/viewtopic.php?id=13099</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Генерация случайных слов]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=120804#p120804" />
			<content type="html"><![CDATA[<p><strong>svoboden</strong>, спасибо, тоже хороший вариант.</p>]]></content>
			<author>
				<name><![CDATA[Coffi]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=38848</uri>
			</author>
			<updated>2017-11-04T20:44:31Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=120804#p120804</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Генерация случайных слов]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=120748#p120748" />
			<content type="html"><![CDATA[<p>Есть такой вариант еще.<br /></p><div class="codebox"><pre><code>Loop % 10
{
   Random, AsCode, Asc(&quot;а&quot;), Asc(&quot;я&quot;)
 Name .=Chr(AsCode)
}
MsgBox % Name</code></pre></div>]]></content>
			<author>
				<name><![CDATA[svoboden]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=34280</uri>
			</author>
			<updated>2017-11-04T07:05:55Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=120748#p120748</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Генерация случайных слов]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=120747#p120747" />
			<content type="html"><![CDATA[<p>Автору уже давным-давно ответили и он все понял, вы же не задавали конкретный вопрос, потому вам ничего и не показывал.</p>]]></content>
			<author>
				<name><![CDATA[belyankin12]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=34408</uri>
			</author>
			<updated>2017-11-04T06:32:06Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=120747#p120747</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Генерация случайных слов]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=120744#p120744" />
			<content type="html"><![CDATA[<p><strong>Malcev</strong>, спасибо!</p>]]></content>
			<author>
				<name><![CDATA[Coffi]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=38848</uri>
			</author>
			<updated>2017-11-04T05:23:07Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=120744#p120744</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Генерация случайных слов]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=120743#p120743" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>list := &quot;abcdefghijklmnopqurstuvwxyzABCDEFGHIJKLMNOPQURSTUVWXYZ0123456789&quot; 
StringSplit, letter, list
loop 6
{
   random, rand, 1, 64
   word .= letter%rand%
}
msgbox % word</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2017-11-04T05:19:15Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=120743#p120743</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Генерация случайных слов]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=120742#p120742" />
			<content type="html"><![CDATA[<p>А можно ли объединить это, типо так: 48-57 (the digits 0-9), 65-90 (uppercase A-Z), and 97-122 (lowercase a-z).<br /></p><div class="codebox"><pre><code>random, rand, 97, 122
   word .= chr(rand)</code></pre></div><p>Короче, чтобы были цифры, маленькие и большие буквы.</p>]]></content>
			<author>
				<name><![CDATA[Coffi]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=38848</uri>
			</author>
			<updated>2017-11-04T04:56:02Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=120742#p120742</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Генерация случайных слов]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=120741#p120741" />
			<content type="html"><![CDATA[<p><strong>Malcev</strong>, спасибо.</p>]]></content>
			<author>
				<name><![CDATA[Coffi]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=38848</uri>
			</author>
			<updated>2017-11-04T04:51:09Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=120741#p120741</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Генерация случайных слов]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=120740#p120740" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>loop 6
{
   random, rand, 97, 122
   word .= chr(rand)
}
msgbox % word</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2017-11-04T04:48:35Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=120740#p120740</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Генерация случайных слов]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=120739#p120739" />
			<content type="html"><![CDATA[<p><strong>belyankin12</strong>, так вопрос автора был не в этом. Вопрос был в том, как сгенерировать случайное количество символов. Типо: Asasidhhaisd, asojdjoasdas и так далее. А то , что вы написали выше - это реально просто.<br /></p><div class="codebox"><pre><code>Random, rand, 1, 2
if rand = 1
	Word := &quot;a&quot;
if rand = 2
	Word := &quot;b&quot;</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Coffi]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=38848</uri>
			</author>
			<updated>2017-11-04T04:32:28Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=120739#p120739</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Генерация случайных слов]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=120726#p120726" />
			<content type="html"><![CDATA[<p>Если рандомное число равно единице то слово &quot;Hello&quot;, если двум - то слово &quot;World&quot;.</p>]]></content>
			<author>
				<name><![CDATA[belyankin12]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=34408</uri>
			</author>
			<updated>2017-11-03T18:30:49Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=120726#p120726</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Генерация случайных слов]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=120725#p120725" />
			<content type="html"><![CDATA[<p><strong>belyankin12</strong>, звучит прикольно. Можно пример?</p>]]></content>
			<author>
				<name><![CDATA[Coffi]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=38848</uri>
			</author>
			<updated>2017-11-03T18:28:37Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=120725#p120725</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Генерация случайных слов]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=120715#p120715" />
			<content type="html"><![CDATA[<p>В АХК не встроены словари. Условия никто не отменял. На секундочку, все генераторы случайных значений (случайные победители в ВК, случайные слова, песни, картинки, все что угодно) основаны на генераторе случайных чисел. Все абсолютно.</p>]]></content>
			<author>
				<name><![CDATA[belyankin12]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=34408</uri>
			</author>
			<updated>2017-11-03T08:59:48Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=120715#p120715</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Генерация случайных слов]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=120707#p120707" />
			<content type="html"><![CDATA[<p><strong>sanniauto</strong>, а как это работает? Я ничего не понял, Random предназначена только для генерации чисел как бы.</p>]]></content>
			<author>
				<name><![CDATA[Coffi]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=38848</uri>
			</author>
			<updated>2017-11-03T04:56:07Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=120707#p120707</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Генерация случайных слов]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=120249#p120249" />
			<content type="html"><![CDATA[<p>Спасибо, помогло.</p>]]></content>
			<author>
				<name><![CDATA[sanniauto]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=38823</uri>
			</author>
			<updated>2017-10-21T01:29:37Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=120249#p120249</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Генерация случайных слов]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=120234#p120234" />
			<content type="html"><![CDATA[<p>Для генерации чисел есть команда <a href="https://autohotkey.com/docs/commands/Random.htm">Random</a>, для генерации слов можете приспособить её же.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2017-10-20T04:34:30Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=120234#p120234</id>
		</entry>
</feed>
