<?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=13879&amp;type=atom" />
	<updated>2018-06-24T13:58:10Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=13879</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Замена чисел на месяца]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=126398#p126398" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>date_array := [&quot;Январь&quot;, &quot;Февраль&quot;, &quot;Март&quot;, &quot;Апрель&quot;, &quot;Май&quot;, &quot;Июнь&quot;, &quot;Июль&quot;, &quot;Август&quot;, &quot;Сентябрь&quot;, &quot;Октябрь&quot;, &quot;Ноябрь&quot;, &quot;Декабрь&quot;]
MsgBox, % date_array[A_MM]</code></pre></div>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2018-06-24T13:58:10Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=126398#p126398</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Замена чисел на месяца]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=126397#p126397" />
			<content type="html"><![CDATA[<p><strong>ypppu</strong><br />Спасибо большое! Я немного исправил и получилось вот так: <br /></p><div class="codebox"><pre><code>
F1::
	date_array := {01: &quot;Январь&quot;, 02: &quot;Февраль&quot;, 03: &quot;Март&quot;, 04: &quot;Апрель&quot;, 05: &quot;Май&quot;, 06: &quot;Июнь&quot;, 07: &quot;Июль&quot;, 08: &quot;Август&quot;, 09: &quot;Сентябрь&quot;, 					10: &quot;Октябрь&quot;, 11: &quot;Ноябрь&quot;, 12: &quot;Декабрь&quot;}

	My_Month := A_MM

	MsgBox, % date_array[My_Month]
return

</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Kinobi 0 in skripti]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=38636</uri>
			</author>
			<updated>2018-06-24T13:29:09Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=126397#p126397</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Замена чисел на месяца]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=126396#p126396" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>date_array := {Июнь: &quot;06&quot;, Июль: &quot;07&quot;}

MsgBox, % date_array[&quot;Июнь&quot;]

My_Month := &quot;Июль&quot;

MsgBox, % date_array[My_Month]</code></pre></div>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2018-06-24T13:13:48Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=126396#p126396</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Замена чисел на месяца]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=126394#p126394" />
			<content type="html"><![CDATA[<p>Добрый день, нигде не могу найти, решил написать сюда.</p><p>Суть проблемы в том, что мне надо вместо числа, например 06 - ставить месяц - Июнь, 07 - Июль и т.д, я пытался через RegExMatch это сделать, но в итоге выводило пустоту, потому что я сделал что-то неправильно. Кто знает как сделать, помогите пожалуйста.</p>]]></content>
			<author>
				<name><![CDATA[Kinobi 0 in skripti]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=38636</uri>
			</author>
			<updated>2018-06-24T11:52:57Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=126394#p126394</id>
		</entry>
</feed>
