<?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>MEMISO &#187; Functions</title>
	<atom:link href="http://www.memiso.com/tag/functions/feed" rel="self" type="application/rss+xml" />
	<link>http://www.memiso.com</link>
	<description>Little Solutions For Big Problems</description>
	<lastBuildDate>Thu, 11 Mar 2010 20:19:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using Optional Argument with User Defined Functions in PHP</title>
		<link>http://www.memiso.com/using-optional-argument-with-user-defined-functions-in-php.html</link>
		<comments>http://www.memiso.com/using-optional-argument-with-user-defined-functions-in-php.html#comments</comments>
		<pubDate>Thu, 11 Mar 2010 20:18:11 +0000</pubDate>
		<dc:creator>Mehmatrix</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Functions]]></category>
		<category><![CDATA[Optional Arguments]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[User-Defined Functions]]></category>

		<guid isPermaLink="false">http://www.memiso.com/?p=936</guid>
		<description><![CDATA[Hi everybody. After a long time, I am here again with my new articles. I thought it can be good to start with a little clue for PHP coders. 
Usage of PHP functions is so easy and practical. However, usually we need to write our own functions while we are making our applications.

1.1) User Defined [...]]]></description>
		<wfw:commentRss>http://www.memiso.com/using-optional-argument-with-user-defined-functions-in-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uppercasing First Letters of Words, Sentences or Lines in Java</title>
		<link>http://www.memiso.com/uppercasing-first-letters-of-words-sentences-or-lines-in-java.html</link>
		<comments>http://www.memiso.com/uppercasing-first-letters-of-words-sentences-or-lines-in-java.html#comments</comments>
		<pubDate>Thu, 29 Oct 2009 00:15:28 +0000</pubDate>
		<dc:creator>Mehmatrix</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Functions]]></category>
		<category><![CDATA[Lowercase]]></category>
		<category><![CDATA[String Operations]]></category>
		<category><![CDATA[Uppercase]]></category>
		<category><![CDATA[Useful Functions]]></category>

		<guid isPermaLink="false">http://www.memiso.com/?p=772</guid>
		<description><![CDATA[Hi again! Today, I&#8217;m going to give you a JAVA function that uppercases first letters of each word, sentence or line. This function is also very similar with the function which was given at this article: Making uppercase the first letters of words, sentences and lines in ASP. To understand the algorithm, take a look [...]]]></description>
		<wfw:commentRss>http://www.memiso.com/uppercasing-first-letters-of-words-sentences-or-lines-in-java.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>All Definitions and Usages of Arrays in ASP</title>
		<link>http://www.memiso.com/all-definitions-and-usages-of-arrays-in-asp.html</link>
		<comments>http://www.memiso.com/all-definitions-and-usages-of-arrays-in-asp.html#comments</comments>
		<pubDate>Sat, 24 Oct 2009 15:59:14 +0000</pubDate>
		<dc:creator>Mehmatrix</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[Arrays]]></category>
		<category><![CDATA[Dynamic]]></category>
		<category><![CDATA[Fixed]]></category>
		<category><![CDATA[Functions]]></category>

		<guid isPermaLink="false">http://www.memiso.com/?p=759</guid>
		<description><![CDATA[Arrays are one of the basics of programming. We can create lots of things via arrays like matrices, databases, tables… Let’s make it shorter and start.

Array() Function in ASP
We define our arrays using the Array() function. We can store values with two different ways. We can create the array and put values in array at [...]]]></description>
		<wfw:commentRss>http://www.memiso.com/all-definitions-and-usages-of-arrays-in-asp.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making Uppercase First Letters of Words, Sentences or Lines in JavaScript</title>
		<link>http://www.memiso.com/making-uppercase-first-letters-of-words-sentences-or-lines-in-javascript.html</link>
		<comments>http://www.memiso.com/making-uppercase-first-letters-of-words-sentences-or-lines-in-javascript.html#comments</comments>
		<pubDate>Tue, 20 Oct 2009 04:53:45 +0000</pubDate>
		<dc:creator>Mehmatrix</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Functions]]></category>
		<category><![CDATA[JS]]></category>
		<category><![CDATA[String Operations]]></category>
		<category><![CDATA[Uppercase]]></category>
		<category><![CDATA[Useful Functions]]></category>

		<guid isPermaLink="false">http://www.memiso.com/?p=719</guid>
		<description><![CDATA[We have talked about making uppercase the first letters of words, sentences and lines in ASP before. Now, we will make the same application in JavaScript.

Let’s look at the UppercaseTheFirstLetter() function.
Function 1.0: UpperFunction.js
1234567891011121314151617181920function UppercaseTheFirstLetter&#40;string,option&#41;&#123;
var splitby,parts,i,uppercased;
if&#40;option==0&#41;&#123;splitby=&#34; &#34;;&#125;
else if&#40;option==1&#41;&#123;splitby=&#34;.&#34;;&#125;
else if&#40;option==2&#41;&#123;splitby=&#34;&#60;BR&#62;&#34;;&#125;

string=string.replace&#40;/^\s+/, ''&#41;.replace&#40;/\s+$/, ''&#41;; 
//we removed unnecessary spaces at the beginning and ending of string. 
parts = string.split&#40;splitby&#41;;

for&#40;i=0;i&#60;parts.length;i++&#41;&#123;
&#160; &#160; [...]]]></description>
		<wfw:commentRss>http://www.memiso.com/making-uppercase-first-letters-of-words-sentences-or-lines-in-javascript.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making User-Defined Functions in ASP</title>
		<link>http://www.memiso.com/making-user-defined-functions-in-asp.html</link>
		<comments>http://www.memiso.com/making-user-defined-functions-in-asp.html#comments</comments>
		<pubDate>Tue, 13 Oct 2009 06:51:00 +0000</pubDate>
		<dc:creator>Mehmatrix</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[Functions]]></category>
		<category><![CDATA[Useful Functions]]></category>
		<category><![CDATA[User-Defined Functions]]></category>

		<guid isPermaLink="false">http://www.memiso.com/?p=584</guid>
		<description><![CDATA[Functions are generally used to perform same operations, or compute equations. For example, suppose that you need to get an average of some numbers. What do you have to do? Are you going to write the equations all the time? A good programmer has to find the shortest way to do works. So, if we [...]]]></description>
		<wfw:commentRss>http://www.memiso.com/making-user-defined-functions-in-asp.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
