<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forum.eggheads.org/app.php/feed/topic/20848" />

	<title>egghelp/eggheads community</title>
	<subtitle>Discussion of eggdrop bots, shell accounts and tcl scripts.</subtitle>
	<link href="https://forum.eggheads.org/index.php" />
	<updated>2020-09-07T20:05:08-04:00</updated>

	<author><name><![CDATA[egghelp/eggheads community]]></name></author>
	<id>https://forum.eggheads.org/app.php/feed/topic/20848</id>

		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2020-09-07T20:05:08-04:00</updated>

		<published>2020-09-07T20:05:08-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=108959#p108959</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=108959#p108959"/>
		<title type="html"><![CDATA[generate random alphabetical chars between 5 and 10]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=108959#p108959"><![CDATA[
Oh i totally forgot about that post thanx crazycat<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Mon Sep 07, 2020 8:05 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CrazyCat]]></name></author>
		<updated>2020-09-07T18:39:27-04:00</updated>

		<published>2020-09-07T18:39:27-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=108958#p108958</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=108958#p108958"/>
		<title type="html"><![CDATA[generate random alphabetical chars between 5 and 10]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=108958#p108958"><![CDATA[
You mean an adaptation of the script requested @ <a href="http://forum.egghelp.org/viewtopic.php?p=108557" class="postlink">http://forum.egghelp.org/viewtopic.php?p=108557</a> ?<br><div class="codebox"><p>Code: </p><pre><code># usage : randString &lt;min&gt; &lt;max&gt;proc randString { {min 1} {max 8} } {set chars "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"set size [expr {int(rand()*($max-$min+1)+$min)}]set range [string length $chars]set txt ""for {set i 0} {$i &lt; $size} {incr i} {set pos [expr {int(rand()*$range)}]append txt [string index $chars $pos]}return $txt}</code></pre></div>If min is not defined, it's between 1 and 8 chars.<br>If min is defined, between &lt;min&gt; and 8 chars long (min must be lower than 8, I didn't check the values)<br>If min and max are defined, it's between &lt;min&gt; and &lt;max&gt; chars long (idem)<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=691">CrazyCat</a> — Mon Sep 07, 2020 6:39 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[simo]]></name></author>
		<updated>2020-09-07T14:57:41-04:00</updated>

		<published>2020-09-07T14:57:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=108957#p108957</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=108957#p108957"/>
		<title type="html"><![CDATA[generate random alphabetical chars between 5 and 10]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=108957#p108957"><![CDATA[
hey there gents,<br><br>i was wondering what would be the proper way to generate random a-zA-z <br> chars  between 5 and 10<br><br>like <br><br>HgfdH<br>Qaygfff<br>Xwqyttoooo<br><br>and so on<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12505">simo</a> — Mon Sep 07, 2020 2:57 pm</p><hr />
]]></content>
	</entry>
	</feed>
