<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>GuShH&#039;s DevBlog &#187; fiorenza</title>
	<atom:link href="http://gushh.net/blog/?tag=fiorenza&#038;feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://gushh.net/blog</link>
	<description>This blog is about software, electronics engineering and game development.</description>
	<lastBuildDate>Tue, 24 Jan 2012 00:31:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>StrEscape, StrQuoteMeta From PHP to PB. (quotemeta, addslashes)</title>
		<link>http://gushh.net/blog/strescape-strquotemeta-from-php-to-pb-quotemeta-addslashes/</link>
		<comments>http://gushh.net/blog/strescape-strquotemeta-from-php-to-pb-quotemeta-addslashes/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 16:45:43 +0000</pubDate>
		<dc:creator>GuShH</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[PureBasic]]></category>
		<category><![CDATA[addslashes]]></category>
		<category><![CDATA[fiorenza]]></category>
		<category><![CDATA[GuShH]]></category>
		<category><![CDATA[pb]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[purebasic]]></category>
		<category><![CDATA[quotemeta]]></category>
		<category><![CDATA[strescape]]></category>
		<category><![CDATA[strquotemeta]]></category>

		<guid isPermaLink="false">http://gushh.net/blog/index.php/2008/06/11/strescape-strquotemeta-from-php-to-pb-quotemeta-addslashes/</guid>
		<description><![CDATA[If you&#8217;re used to PHP, you might of know the functions &#8216;quotemeta();&#8217; and &#8216;addslashes();&#8217; are very, very useful when dealing with user Input and similar activities where escaping certain entities (characters!) is very important. This routines, while not too elegant, do the same (or similar) job as PHP but in PB: The equivalent to quotemeta(); [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re used to PHP, you might of know the functions &#8216;quotemeta();&#8217; and &#8216;addslashes();&#8217; are very, very useful when dealing with user Input and similar activities where escaping certain entities (characters!) is very important.</p>
<p>This routines, while not too elegant, do the same (or similar) job as PHP but in PB:<br />
</p>
<address>The equivalent to quotemeta(); in PHP can be found in <a href="http://gushh.net/dev/?file=pb/StrQuoteMeta.pb">here</a>. </address>
<address>Whereas the addslashes(); counterpart is located in <a href="http://gushh.net/dev/?file=pb/StrEscape.pb">here</a>.<br />
</address>
<address> </address>
<h6><em>(I know, the PHP lexer I&#8217;m using has a bug on the PB definition, I&#8217;ll take a look later).<br />
</em></h6>
<g:plusone href='http://gushh.net/blog/strescape-strquotemeta-from-php-to-pb-quotemeta-addslashes/'></g:plusone>]]></content:encoded>
			<wfw:commentRss>http://gushh.net/blog/strescape-strquotemeta-from-php-to-pb-quotemeta-addslashes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ascii helper routines, part 1</title>
		<link>http://gushh.net/blog/ascii-helper-routines-part-1/</link>
		<comments>http://gushh.net/blog/ascii-helper-routines-part-1/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 16:14:42 +0000</pubDate>
		<dc:creator>GuShH</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[ascii]]></category>
		<category><![CDATA[fiorenza]]></category>
		<category><![CDATA[GuShH]]></category>
		<category><![CDATA[is_alpha]]></category>
		<category><![CDATA[is_numeric]]></category>
		<category><![CDATA[is_symbol]]></category>
		<category><![CDATA[pb]]></category>
		<category><![CDATA[purebasic]]></category>

		<guid isPermaLink="false">http://gushh.net/blog/index.php/2008/06/11/ascii-helper-routines-part-1/</guid>
		<description><![CDATA[Whenever I have to manipulate strings in PB, on a low-level (ie. per-character basis) I find it almost imperative to have the following routines included in my project: is_alpha(); is_numeric(); is_symbol(); They are amongst the most basic routines out there, however, they are still useful nonetheless. You can grab the include/source from here: http://gushh.net/dev/?file=pb/ascii_helpers.pb If [...]]]></description>
			<content:encoded><![CDATA[<p>Whenever I have to manipulate strings in PB, on a low-level (ie. per-character basis) I find it almost imperative to have the following routines included in my project:</p>
<pre> is_alpha(); is_numeric(); is_symbol();</pre>
<p>They are amongst the most basic routines out there, however, they are still useful nonetheless.</p>
<p>You can grab the include/source from here:  <a href="http://gushh.net/dev/?file=pb/ascii_helpers.pb"><span style="font-family: 'Lucida Grande'; font-size: 12px; line-height: normal; white-space: pre" class="Apple-style-span">http://gushh.net/dev/?file=pb/ascii_helpers.pb</span></a></p>
<p>If you&#8217;re working on a Lexer, Parser, or similar&#8230; this will come in handy in case you don&#8217;t have it already.</p>
<p>Cheers.</p>
<g:plusone href='http://gushh.net/blog/ascii-helper-routines-part-1/'></g:plusone>]]></content:encoded>
			<wfw:commentRss>http://gushh.net/blog/ascii-helper-routines-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: gushh.net @ 2012-02-09 07:31:15 by W3 Total Cache -->
