<?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>http://forum.script-coding.com/viewtopic.php?id=18260</link>
		<atom:link href="http://forum.script-coding.com/extern.php?action=feed&amp;tid=18260&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Парсинг строки».]]></description>
		<lastBuildDate>Wed, 24 Jul 2024 07:25:14 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Парсинг строки]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=161332#p161332</link>
			<description><![CDATA[<p><strong>__Михаил__</strong><br />Спасибо, работает такой вариант!</p><p>Итоговый шаблон:</p><div class="codebox"><pre><code>
InputString := &quot; |  +- CPU Core #3    :       52       58       60 (/intelcpu/0/temperature/0)&quot;
RegExMatch(InputString, &quot;(\d+)\s*(\d+)\s*(\d+)&quot;, Match)
MsgBox % Match1 &quot; &quot; Match2 &quot; &quot; Match3
</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (sergeich)]]></author>
			<pubDate>Wed, 24 Jul 2024 07:25:14 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=161332#p161332</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Парсинг строки]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=161331#p161331</link>
			<description><![CDATA[<div class="codebox"><pre><code>RegExMatch(InputString, &quot;(\d{2}).*(\d{2}).*(\d{2})&quot;, Match)
MsgBox, % Match1 &quot; &quot; Match2 &quot; &quot; Match3</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (__Михаил__)]]></author>
			<pubDate>Tue, 23 Jul 2024 21:14:12 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=161331#p161331</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Парсинг строки]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=161330#p161330</link>
			<description><![CDATA[<p>Не пойму как вывести второе и третье вхождение отдельно</p><div class="codebox"><pre><code>
InputString := &quot; |  +- CPU Core #3    :       52       58       60 (/intelcpu/0/temperature/0)&quot;
RegExMatch(InputString, &quot;(\d{2}.*\d{2}.*\d{2})&quot;, Match)
MsgBox % Match1
</code></pre></div><p>Результат: 52&nbsp; &nbsp; &nbsp; &nbsp;58&nbsp; &nbsp; &nbsp; &nbsp;60</p>]]></description>
			<author><![CDATA[null@example.com (sergeich)]]></author>
			<pubDate>Tue, 23 Jul 2024 19:08:46 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=161330#p161330</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Парсинг строки]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=161329#p161329</link>
			<description><![CDATA[<p>Публикуйте свои попытки тут.</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Tue, 23 Jul 2024 18:59:04 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=161329#p161329</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Парсинг строки]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=161328#p161328</link>
			<description><![CDATA[<p><strong>teadrinker</strong><br />Да, точно, спасибо! Буду пытаться дальше.</p>]]></description>
			<author><![CDATA[null@example.com (sergeich)]]></author>
			<pubDate>Tue, 23 Jul 2024 18:13:30 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=161328#p161328</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Парсинг строки]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=161326#p161326</link>
			<description><![CDATA[<p>Может, RegExMatch на что сгодится? <img src="//forum.script-coding.com/img/smilies/smile.png" width="15" height="15" /></p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Tue, 23 Jul 2024 16:11:49 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=161326#p161326</guid>
		</item>
		<item>
			<title><![CDATA[AHK: Парсинг строки]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=161325#p161325</link>
			<description><![CDATA[<p>Привет всем! И снова к вопросу парсинга строки из Open Hardware Monitor Report ))<br />Помогите пожалуйста распарсить строку:</p><p>|&nbsp; +- CPU Core #1&nbsp; &nbsp; :&nbsp; &nbsp; &nbsp; &nbsp;52&nbsp; &nbsp; &nbsp; &nbsp;58&nbsp; &nbsp; &nbsp; &nbsp;60 (/intelcpu/0/temperature/0)</p><p>Необходимо вытащить цифры 58, 58, 60 в переменные. Пробовал с помощью RegExReplace, но не получается.<br />Спасибо!</p>]]></description>
			<author><![CDATA[null@example.com (sergeich)]]></author>
			<pubDate>Tue, 23 Jul 2024 12:47:15 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=161325#p161325</guid>
		</item>
	</channel>
</rss>
