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

	<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>2005-05-19T20:02:52-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Ofloo]]></name></author>
		<updated>2005-05-19T20:02:52-04:00</updated>

		<published>2005-05-19T20:02:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=49621#p49621</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=49621#p49621"/>
		<title type="html"><![CDATA[skipping characters mysql doesnt like :&gt;]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=49621#p49621"><![CDATA[
just trying to point out that he might wana skip those to <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><br><br>cause he wants to strip out special chars eh ..<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3151">Ofloo</a> — Thu May 19, 2005 8:02 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2005-05-17T05:40:38-04:00</updated>

		<published>2005-05-17T05:40:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=49567#p49567</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=49567#p49567"/>
		<title type="html"><![CDATA[skipping characters mysql doesnt like :&gt;]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=49567#p49567"><![CDATA[
He asked about stripping "<strong class="text-strong">^ \ ' " #</strong>". however if <strong class="text-strong">`</strong> and <strong class="text-strong">.</strong> should be skipped too then this will do it:<div class="codebox"><p>Code: </p><pre><code>set row [string map {^ "" \\ "" ' "" \" "" # "" . "" ` ""} $row]</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Tue May 17, 2005 5:40 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Ofloo]]></name></author>
		<updated>2005-05-16T09:46:01-04:00</updated>

		<published>2005-05-16T09:46:01-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=49542#p49542</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=49542#p49542"/>
		<title type="html"><![CDATA[skipping characters mysql doesnt like :&gt;]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=49542#p49542"><![CDATA[
what about a '.' and '`' ...<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3151">Ofloo</a> — Mon May 16, 2005 9:46 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2005-05-16T08:49:47-04:00</updated>

		<published>2005-05-16T08:49:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=49540#p49540</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=49540#p49540"/>
		<title type="html"><![CDATA[skipping characters mysql doesnt like :&gt;]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=49540#p49540"><![CDATA[
try:<div class="codebox"><p>Code: </p><pre><code>set row [string map {^ "" \\ "" ' "" \" "" # ""} $row]</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Mon May 16, 2005 8:49 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[bazn]]></name></author>
		<updated>2005-05-16T08:39:32-04:00</updated>

		<published>2005-05-16T08:39:32-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=49539#p49539</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=49539#p49539"/>
		<title type="html"><![CDATA[skipping characters mysql doesnt like :&gt;]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=49539#p49539"><![CDATA[
hi i'm trying to skip characters wihcih mysql doesn't like tryed like that :<br><div class="codebox"><p>Code: </p><pre><code>regsub -all {[\^\[\]\'\"\# ]} $row " " row</code></pre></div>but it don't work, it gives me no failure but it doesnt remove the characters<br> <br>^ \ ' " # <br><br>someone can give me a hint? <br><br>pz<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5155">bazn</a> — Mon May 16, 2005 8:39 am</p><hr />
]]></content>
	</entry>
	</feed>
