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

	<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>2009-06-03T23:05:59-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Ofloo]]></name></author>
		<updated>2009-06-03T23:05:59-04:00</updated>

		<published>2009-06-03T23:05:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89084#p89084</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89084#p89084"/>
		<title type="html"><![CDATA[regexp problem..]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89084#p89084"><![CDATA[
it's an page which requires authentication.. but it seems a nice script i often do this from console .. <br><br>ctrl u copy paste set data {htmlpage} then test my regexp <br><br>EDIT: And it seems to work in real time .. to figur..<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3151">Ofloo</a> — Wed Jun 03, 2009 11:05 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[speechles]]></name></author>
		<updated>2009-06-03T16:25:06-04:00</updated>

		<published>2009-06-03T16:25:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89078#p89078</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89078#p89078"/>
		<title type="html"><![CDATA[regexp problem..]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89078#p89078"><![CDATA[
<blockquote class="uncited"><div>it is kindoff a lot .. it's whole html page .. i did some tests to .. on emulated tests it works just fine however on a site it doesn't maybe i'm nto considering all special charaters,.. and should split the data before i regexp it .. i'll let you know how it turns out.</div></blockquote>This is why <a href="http://forum.egghelp.org/viewtopic.php?t=16819" class="postlink"><strong class="text-strong">Webby</strong></a> was created. You can test/debug regular expressions on a webpage in real time with a pretty standard simple interface. This should help you debug the problem.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8138">speechles</a> — Wed Jun 03, 2009 4:25 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Ofloo]]></name></author>
		<updated>2009-06-03T11:13:20-04:00</updated>

		<published>2009-06-03T11:13:20-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89070#p89070</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89070#p89070"/>
		<title type="html"><![CDATA[regexp problem..]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89070#p89070"><![CDATA[
it is kindoff a lot .. it's whole html page .. i did some tests to .. on emulated tests it works just fine however on a site it doesn't maybe i'm nto considering all special charaters,.. and should split the data before i regexp it .. i'll let you know how it turns out.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3151">Ofloo</a> — Wed Jun 03, 2009 11:13 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2009-06-03T11:07:04-04:00</updated>

		<published>2009-06-03T11:07:04-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89068#p89068</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89068#p89068"/>
		<title type="html"><![CDATA[regexp problem..]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89068#p89068"><![CDATA[
Just tested with some trivial data, and works just fine for me. You are using non-greedy quantifiers, so I can't see no good reason for the third one failing.<br><br>Could you post some real data that works/doesn't work?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Wed Jun 03, 2009 11:07 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Ofloo]]></name></author>
		<updated>2009-06-03T10:53:36-04:00</updated>

		<published>2009-06-03T10:53:36-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=89065#p89065</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=89065#p89065"/>
		<title type="html"><![CDATA[regexp problem..]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=89065#p89065"><![CDATA[
i've got this issue with html tags, .. for some reason <br><br>this can be &lt;div id="building_contract2"&gt; or &lt;div id="building_contract"&gt;<br><div class="codebox"><p>Code: </p><pre><code>regexp -nocase {&lt;div id="building_contract"&gt;&lt;div class="f10 b"&gt;.+?&lt;/div&gt;(.+?)&lt;/div&gt;} $data &gt; build</code></pre></div> works<div class="codebox"><p>Code: </p><pre><code>regexp -nocase {&lt;div id="building_contract2"&gt;&lt;div class="f10 b"&gt;.+?&lt;/div&gt;(.+?)&lt;/div&gt;} $data  &gt; build</code></pre></div> works<div class="codebox"><p>Code: </p><pre><code>regexp -nocase {&lt;div id="building_contract[0-9]{0,1}"&gt;&lt;div class="f10 b"&gt;.+?&lt;/div&gt;(.+?)&lt;/div&gt;} $data &gt; build</code></pre></div> doesn't work ..<br><br>why is that?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3151">Ofloo</a> — Wed Jun 03, 2009 10:53 am</p><hr />
]]></content>
	</entry>
	</feed>
