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

	<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>2004-08-26T10:32:04-04:00</updated>

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

		<entry>
		<author><name><![CDATA[DayCuts]]></name></author>
		<updated>2004-08-26T10:32:04-04:00</updated>

		<published>2004-08-26T10:32:04-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=40213#p40213</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=40213#p40213"/>
		<title type="html"><![CDATA[regexp help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=40213#p40213"><![CDATA[
Your right, i was confusing regex flavors, tcl does include the digits and underscore in \w but there are some dont.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5073">DayCuts</a> — Thu Aug 26, 2004 10:32 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[user]]></name></author>
		<updated>2004-08-26T07:56:40-04:00</updated>

		<published>2004-08-26T07:56:40-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=40208#p40208</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=40208#p40208"/>
		<title type="html"><![CDATA[tip]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=40208#p40208"><![CDATA[
<blockquote class="uncited"><div>(\d|\w)(\1{4,}) = any word charactor or digit 5 or more times</div></blockquote><a href="http://tcl.tk/man/tcl8.5/TclCmd/re_syntax.htm#M47" class="postlink">\w</a> includes \d<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2878">user</a> — Thu Aug 26, 2004 7:56 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2004-08-26T07:45:01-04:00</updated>

		<published>2004-08-26T07:45:01-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=40206#p40206</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=40206#p40206"/>
		<title type="html"><![CDATA[regexp help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=40206#p40206"><![CDATA[
Good info guys, this is helpful for me too!  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_mrgreen.gif" width="15" height="15" alt=":mrgreen:" title="Mr. Green"> <br>I am really weak with regular expressions as well as regular substitutions.  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_rolleyes.gif" width="15" height="15" alt=":roll:" title="Rolling Eyes"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Thu Aug 26, 2004 7:45 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[DayCuts]]></name></author>
		<updated>2004-08-26T06:33:20-04:00</updated>

		<published>2004-08-26T06:33:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=40200#p40200</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=40200#p40200"/>
		<title type="html"><![CDATA[regexp help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=40200#p40200"><![CDATA[
(\d|\w)(\1{4,}) = any word charactor or digit 5 or more times<br>(.)(\1{4,}) = any charactor at all 5 or more times<br><br>edit: guess we were posting at same time :\<br><br>Here is a nice website with good guides to regular expressions...<br><a href="http://www.regular-expressions.info/" class="postlink">http://www.regular-expressions.info/</a><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5073">DayCuts</a> — Thu Aug 26, 2004 6:33 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[user]]></name></author>
		<updated>2004-08-26T06:23:04-04:00</updated>

		<published>2004-08-26T06:23:04-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=40198#p40198</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=40198#p40198"/>
		<title type="html"><![CDATA[regexp help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=40198#p40198"><![CDATA[
<blockquote class="uncited"><div>% regexp {(\w)(\1{4,})} hellllo<br>0<br>% regexp {(\w)(\1{4,})} helllllo<br>1</div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2878">user</a> — Thu Aug 26, 2004 6:23 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ShavdApe]]></name></author>
		<updated>2004-08-26T05:13:51-04:00</updated>

		<published>2004-08-26T05:13:51-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=40195#p40195</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=40195#p40195"/>
		<title type="html"><![CDATA[regexp help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=40195#p40195"><![CDATA[
([\da-zA-Z]"{1}")(\1[\da-zA-Z]{3}) <br><br>The above regex will match when a character is repeated 5 times or more in sucsession. eg.<br>Hell<span style="color:red">ooooo</span><br>Or at least it will in regexbuddy and in a quick test in mirc but when i try to use the same as a regexp it matches when there are 2 or more so He<span style="color:red">ll</span>o <br><br>Any help appreciated.<br><br>** [EDIT]<br><br>On further testing looks like my regex was wrong to start with hehe and the eggdrop was doing what it was told.<br>if you hadnt already guessed im new to regex <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><br><br>([\da-zA-Z]{1})(\1{3,}) &lt;--- is the one im trying now<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4266">ShavdApe</a> — Thu Aug 26, 2004 5:13 am</p><hr />
]]></content>
	</entry>
	</feed>
