<?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/4394" />

	<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>2003-05-16T16:37:52-04:00</updated>

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

		<entry>
		<author><name><![CDATA[cerberus_gr]]></name></author>
		<updated>2003-05-16T16:37:52-04:00</updated>

		<published>2003-05-16T16:37:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20293#p20293</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20293#p20293"/>
		<title type="html"><![CDATA[Some questions]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20293#p20293"><![CDATA[
<img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2661">cerberus_gr</a> — Fri May 16, 2003 4:37 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-05-15T17:10:41-04:00</updated>

		<published>2003-05-15T17:10:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20232#p20232</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20232#p20232"/>
		<title type="html"><![CDATA[Some questions]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20232#p20232"><![CDATA[
I love it, because I don't understand it.<br><br>Don't fear somthing for that. Fight it by learning it. I am slowly doing so (yes, even I have my flaws).<br><br>Regexp is so damned powerful, but with scripting power, there comes the dificulty in mastering it.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Thu May 15, 2003 5:10 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[cerberus_gr]]></name></author>
		<updated>2003-05-15T16:26:23-04:00</updated>

		<published>2003-05-15T16:26:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20229#p20229</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20229#p20229"/>
		<title type="html"><![CDATA[Some questions]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20229#p20229"><![CDATA[
Thx ppslim<br><br>I hate regexp by the way, because I don't undestand it <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_razz.gif" width="15" height="15" alt=":P" title="Razz"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2661">cerberus_gr</a> — Thu May 15, 2003 4:26 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2003-05-15T16:22:13-04:00</updated>

		<published>2003-05-15T16:22:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20228#p20228</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20228#p20228"/>
		<title type="html"><![CDATA[Some questions]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20228#p20228"><![CDATA[
1: Use<div class="codebox"><p>Code: </p><pre><code>prco num:char {str chr} {  return [regexp -all "\[${chr}\]" $str]}</code></pre></div>2: See the likes of No!Spam.tcl. It has a good CTRL code stripping system, again usign regexps.<br><br>3: Yes, that is correct.<br><br>However, please watch how you use $ in variable names. This is a very easy way to get caught out.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Thu May 15, 2003 4:22 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[cerberus_gr]]></name></author>
		<updated>2003-05-15T16:02:56-04:00</updated>

		<published>2003-05-15T16:02:56-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=20227#p20227</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=20227#p20227"/>
		<title type="html"><![CDATA[Some questions]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=20227#p20227"><![CDATA[
Hello,<br><br>I have these questions:<br><br>1) I want to write a procedure which return the number of characters that exist in a text....<br><br>proc num:char { char text } { }<br><br>example: [num:char hello l] returns 2<br><br>2) How could I strip out the bold, color, reverse and underline codes, such as $strip in mirc scripting?<br><br>3) I have set a variable as:<br>    set path$id hello<br><br>     If I want to read this variable should write ${path$id} or this is not true?<br><br>Any ideas? Thx<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2661">cerberus_gr</a> — Thu May 15, 2003 4:02 pm</p><hr />
]]></content>
	</entry>
	</feed>
