<?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>IT Computer Zone &#187; perl</title>
	<atom:link href="http://itcomputerzone.com/tag/perl/feed" rel="self" type="application/rss+xml" />
	<link>http://itcomputerzone.com</link>
	<description>All About Article Computer, Software Technology News &#38; IT Solution</description>
	<lastBuildDate>Thu, 02 Feb 2012 14:57:33 +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>Scalar Data</title>
		<link>http://itcomputerzone.com/programming/scalar-data.html</link>
		<comments>http://itcomputerzone.com/programming/scalar-data.html#comments</comments>
		<pubDate>Sat, 02 May 2009 10:05:36 +0000</pubDate>
		<dc:creator>computerzone</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[perl]]></category>

		<guid isPermaLink="false">http://itcomputerzone.com/?p=82</guid>
		<description><![CDATA[You may want to Read Practitioner Programming Perl and Step to Run Perl First . Scalar data can be defined as a data that can be manipulated by perl, can be: -digit numeric -character-string, and the data we can add the value of a particular service before the data, such as plus signs, minus percent [...]


Related posts:<ol><li><a href='http://itcomputerzone.com/programming/stepstorunperl.html' rel='bookmark' title='Permanent Link: Steps to Run Perl'>Steps to Run Perl</a> <small>Running PERL before you may need to read about practitioner...</small></li><li><a href='http://itcomputerzone.com/software/restore-lost-data-using-data-recovery-software.html' rel='bookmark' title='Permanent Link: Restore Lost Data Using Data Recovery Software'>Restore Lost Data Using Data Recovery Software</a> <small>Now, has many data recovery software company build data recovery...</small></li><li><a href='http://itcomputerzone.com/programming/practitioners-programming-perl.html' rel='bookmark' title='Permanent Link: Practitioners programming perl'>Practitioners programming perl</a> <small>You may never make a program with a shell script....</small></li></ol>

<!-- || -->]]></description>
			<content:encoded><![CDATA[<p>You may want to Read <a title="practitioner programming perl" href="http://itcomputerzone.com/programming/practitioners-programming-perl.html" target="_blank">Practitioner Programming Perl</a> and <a title="step to run perl" href="http://itcomputerzone.com/programming/stepstorunperl.html" target="_blank">Step to Run Perl</a> First .<br />
Scalar data can be defined as a data that can be manipulated by perl, can be:</p>
<p>-digit numeric<br />
-character-string,</p>
<p>and the data we can add the value of a particular service before the data, such as plus signs, minus percent and so forth. All scalar variables using the dollar sign &#8220;$&#8221; as the beginning of the name.</p>
<p>Example of the correct name of the variable:</p>
<blockquote><p>$ example<br />
$ canlongcharacter<br />
$ corect_name_scalar_variabel</p></blockquote>
<p>instance Wrong variable name</p>
<blockquote><p>$ Example<br />
scalar variable $ name is incorrect</p></blockquote>
<p>Keep in mind that the use of letter writing in the scalar variable is very sensitive to the difference between capital and lowercase letters. So if you make $ skalar number of variables, then you can not be called with the variable $ scalalr TOTAL<br />
operator in manipulating the use of scalar variables is very flexible. Note the examples of the following cases:</p>
<blockquote><p>$ a = 2;<br />
$ b = 6;<br />
$ c = $ a. $ b; # The &#8220;.&#8221; service integration 26<br />
a # character<br />
$ d = $ c / 2;<br />
print $ d;</p>
<p>the results are:</p>
<p>13</p></blockquote>
<p>On the use of characters, there are several things that need to be<br />
Single-quoted or single quotation</p>
<p>* Double quoted or quotation double</p>
<p>single quotation generally will not translate what is in it. While the quotation ganda translate what is there in it, including variables.note the following example:</p>
<blockquote><p>#! / usr / local / bin / perl-w<br />
# Show warnings<br />
$ who = &#8216;Yon Yonson&#8217;;<br />
$ where = &#8216;Wisconsin&#8217;;<br />
$ what = &#8216;in a lumbermill&#8217;;<br />
print &#8220;My name is $ who, \ n&#8221;;<br />
# Let&#8217;s introduce ourselves</p></blockquote>
<blockquote><p>print &#8220;I live in $ where, \ n&#8221;,<br />
&#8220;$ What I work there. \ N&#8221;;<br />
# Remember the line breaks<br />
print &#8220;\ nSigned: \ t $ who, \ n \ t \ t $ where. \ n&#8221;;</p></blockquote>
<p>the results are:</p>
<blockquote><p>My name is Yon Yonson,<br />
I live in Wisconsin,<br />
I work in a lumbermill there.<br />
Signed: Yon Yonson,<br />
Wisconsin</p></blockquote>
<p>The special characters in, among others:</p>
<p><strong>Character printing results </strong><br />
\ b Backspace<br />
\ c the line is terminated without newline<br />
\ f formfeed<br />
\ n newline<br />
\ r Carriage return<br />
\ t tab character<br />
\ \ Reversed virgule character<br />
\ nnn the character has ASCII value nnn,<br />
where nn is 1 to 3 octal digit number</p>


<p>Related posts:<ol><li><a href='http://itcomputerzone.com/programming/stepstorunperl.html' rel='bookmark' title='Permanent Link: Steps to Run Perl'>Steps to Run Perl</a> <small>Running PERL before you may need to read about practitioner...</small></li><li><a href='http://itcomputerzone.com/software/restore-lost-data-using-data-recovery-software.html' rel='bookmark' title='Permanent Link: Restore Lost Data Using Data Recovery Software'>Restore Lost Data Using Data Recovery Software</a> <small>Now, has many data recovery software company build data recovery...</small></li><li><a href='http://itcomputerzone.com/programming/practitioners-programming-perl.html' rel='bookmark' title='Permanent Link: Practitioners programming perl'>Practitioners programming perl</a> <small>You may never make a program with a shell script....</small></li></ol></p>
<p><!-- || --></p>]]></content:encoded>
			<wfw:commentRss>http://itcomputerzone.com/programming/scalar-data.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Steps to Run Perl</title>
		<link>http://itcomputerzone.com/programming/stepstorunperl.html</link>
		<comments>http://itcomputerzone.com/programming/stepstorunperl.html#comments</comments>
		<pubDate>Thu, 30 Apr 2009 22:59:13 +0000</pubDate>
		<dc:creator>computerzone</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[perl]]></category>

		<guid isPermaLink="false">http://itcomputerzone.com/?p=72</guid>
		<description><![CDATA[Running PERL before you may need to read about practitioner programming perl, ok next,. The easiest ways to run the program is to call the perl interpreter and perl program name as argument perl example.pl Name of program or file is example.pl perl and perl is the name of the perl interpreter. Of course the [...]


Related posts:<ol><li><a href='http://itcomputerzone.com/programming/practitioners-programming-perl.html' rel='bookmark' title='Permanent Link: Practitioners programming perl'>Practitioners programming perl</a> <small>You may never make a program with a shell script....</small></li><li><a href='http://itcomputerzone.com/windows/simple-steps-to-anticipate-virus.html' rel='bookmark' title='Permanent Link: Simple Steps to anticipate Virus'>Simple Steps to anticipate Virus</a> <small>There are a few simple steps to protect your computer...</small></li><li><a href='http://itcomputerzone.com/networking/steps-how-to-share-files-between-two-computers.html' rel='bookmark' title='Permanent Link: Steps How to Share Files Between Two Computers'>Steps How to Share Files Between Two Computers</a> <small>Some friends ask to me about how to share files...</small></li></ol>

<!-- || -->]]></description>
			<content:encoded><![CDATA[<p><strong>Running PERL </strong></p>
<p>before you may need to read about <a title="Step to run perl" href="http://itcomputerzone.com/programming/practitioners-programming-perl.html" target="_blank">practitioner programming perl</a>, ok next,.<br />
The easiest ways to run the program is to call the perl interpreter and perl program name as argument<br />
perl example.pl<br />
Name of program or file is example.pl perl and perl is the name of the perl interpreter. Of course the above perl program assumes that the perl path is known, if not then we need to call the full path as follows:<br />
/ usr / local / bin / per example.pl<br />
Well if you are using Windows 98 or Windows NT, you can call in a way that is almost the same, namely:<br />
C: \ Ntperl \ perl example.pl<br />
Of course the way in making up a bit. For that we can simplify the called without including the name of the perl interpreter, so just the name of the file perl-its only</p>
<p>example.pl</p>
<p>There are several things that must be done on a Unix system, namely:<br />
1. Adding the full path location of the perl interpreter on file dibaris first perl program as follows:</p>
<blockquote><p>#! / usr / local / bin / perl<br />
# Name of Program: hello.pl<br />
print &#8220;Hello World \ n&#8221;;</p></blockquote>
<p>2. So that the perl program file can be executed directly, it is necessary to change the file mode as the mode of execution of the file system UNIX, that is</p>
<p>Chmod + x example.pl</p>
<p>On Windows systems, to make a perl program can be executed directly, it can be done by making the association between the file extension .Pl and perl programs. So every file ending pl will executed by perl programs, precisely active perl</p>
<p><strong> MAKE PERL SCRIPT &#8220;HELLO WORLD&#8221; </strong><br />
Perl script is a text file that consists of a set of commands perl. Here are some general provisions to note:</p>
<p>1. Empty spaces at the beginning of the line will be ignored<br />
2. Perl command terminated with semicolon or a semicolon &#8220;;&#8221;<br />
3. Fence or a sign &#8220;#&#8221; will be defined as where the comment behind will be ignored<br />
4. On Unix systems, the first line of the program included the location of perl, for example #! / Usr / local / bin / perl</p>
<p>Well, you see the program first, hello world!</p>
<blockquote><p>#! / usr / local / bin / perl<br />
# Name of Program: hello.pl<br />
print &#8220;Hello World \ n&#8221;;</p></blockquote>
<p>let&#8217;s do the following steps:</p>
<blockquote><p>$ Perl hello.pl<br />
Hello world</p></blockquote>
<p>Or</p>
<blockquote><p>$ Chmod + x hello.pl<br />
$ Hello.pl<br />
Hello world<br />
$</p></blockquote>
<p><strong> TYPE DATA </strong></p>
<p>There are several main types of data types, namely:</p>
<p>Scalar<br />
* Array<br />
* Assosiatif array (array continued)</p>


<p>Related posts:<ol><li><a href='http://itcomputerzone.com/programming/practitioners-programming-perl.html' rel='bookmark' title='Permanent Link: Practitioners programming perl'>Practitioners programming perl</a> <small>You may never make a program with a shell script....</small></li><li><a href='http://itcomputerzone.com/windows/simple-steps-to-anticipate-virus.html' rel='bookmark' title='Permanent Link: Simple Steps to anticipate Virus'>Simple Steps to anticipate Virus</a> <small>There are a few simple steps to protect your computer...</small></li><li><a href='http://itcomputerzone.com/networking/steps-how-to-share-files-between-two-computers.html' rel='bookmark' title='Permanent Link: Steps How to Share Files Between Two Computers'>Steps How to Share Files Between Two Computers</a> <small>Some friends ask to me about how to share files...</small></li></ol></p>
<p><!-- || --></p>]]></content:encoded>
			<wfw:commentRss>http://itcomputerzone.com/programming/stepstorunperl.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Practitioners programming perl</title>
		<link>http://itcomputerzone.com/programming/practitioners-programming-perl.html</link>
		<comments>http://itcomputerzone.com/programming/practitioners-programming-perl.html#comments</comments>
		<pubDate>Wed, 29 Apr 2009 22:48:19 +0000</pubDate>
		<dc:creator>computerzone</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[perl]]></category>

		<guid isPermaLink="false">http://itcomputerzone.com/?p=66</guid>
		<description><![CDATA[You may never make a program with a shell script. shell script does not like perl, because perl is very flexible to use, with the perl program, we can make a match that we want. Perl (Practical extraction and Report Language) is created by Larry Wall. Perl is a compiler language interpreters at a time [...]


Related posts:<ol><li><a href='http://itcomputerzone.com/programming/stepstorunperl.html' rel='bookmark' title='Permanent Link: Steps to Run Perl'>Steps to Run Perl</a> <small>Running PERL before you may need to read about practitioner...</small></li><li><a href='http://itcomputerzone.com/programming/automatic-shutdown-pc-with-simple-batch-programming.html' rel='bookmark' title='Permanent Link: Automatic Shutdown PC With simple batch programming'>Automatic Shutdown PC With simple batch programming</a> <small>after knowing the basic programming batch (batch introduction) we know...</small></li><li><a href='http://itcomputerzone.com/programming/introduction-batch-programming.html' rel='bookmark' title='Permanent Link: Introduction Batch Programming'>Introduction Batch Programming</a> <small>batch programming language is used by the Command Prompt (CMD),...</small></li></ol>

<!-- || -->]]></description>
			<content:encoded><![CDATA[<p>You may never make a program with a shell script. shell script does not like perl, because perl is very flexible to use, with the perl program, we can make a match that we want.</p>
<p>Perl (Practical extraction and Report Language) is created by Larry Wall. Perl is a compiler language interpreters at a time similar to java, perl can detect any line to find the syntax error before the program is run.</p>
<p>many people use Perl for the development of the home combined with CGI. a lot of software that was developed in the Internet and the primary language is the use of perl, for example one that is MRTG (software monitors internet traffic). perl programmers can learn quickly, because perl is similar to the C language, for example, a &#8220;;&#8221; at the end of the command.</p>
<p>Perl itself is a program created specifically for UNIX. However, for users 95 and windows NT windows can still use Perl for Win32 as activePerl (according to the name of the web address for Win32 Perl is. Active Perl made after Perl 5 version for Unix distributed.</p>
<p>WHY NEED PERL?</p>
<p>Operating systems supported</p>
<p>* Perl from Unix systems started as a system administration.<br />
* Perl work on Macintosh machines &#8211; see The MacPerl Pages on http://www.macperl.com/ and<br />
* Perl is also working on the Microsoft-based machines &#8211; see ActiveState Tools Corp. at http://www.activestate.com/.</p>
<p>Featured basic Perl</p>
<p>* Perl take features from other programming languages such as C, awk, sed, sh, and BASIC.<br />
* Perl also runs with third-party databases such as Oracle, Sybase, postgres, and the other through the abstract database interface called dBi.<br />
* Perl can work with HTML, XML, and mark-up languages other.<br />
* Perl has Unicode support.<br />
* Perl is and will always be Y2K compliant.<br />
* Perl supports procedural and object-oriented programming.<br />
* Perl can berantarmuka library-library with C / C + + XS through external or SWIG.<br />
* It will support development of Java-Perl Lingo (JPL)</p>
<p>Perl was developed by perl5porters or for short p5p this is open source,. Perl 5 is very extensible and has more than 400 third party modules available on the Comprehensive Perl Archive Network (CPAN). addition, the perl (the interpreter of Perl) can be embed in the system to another.</p>
<p>Perl is the most popular programming language for web perl for web features with text manipulation and with the rapid development cycle, Perl known as &#8220;the duct-tape of the internet&#8221;. CGI.pm is the standard distribution of Perl CGI.pm Perl.Modul create a HTML form handling so much easier. addition, Perl is also capable of handling encrypted Web transactions, including for the purpose of e-commerce.Perl can embed in web server to speed prosesing to 2000%. View http://perl.apache.org, Apache web server to use mod_perl to embed the Perl interpreter, Netscape web server nsapi_perl can use to embed the Perl interpreter, and use the Perl package dBi, web-database integration becomes easier .</p>
<p>Perl is used by many Corporate giants such as Amazon.com and Deja.com, Perl can embed in web server to speed prosesing to 2000%. See the website http://perl.apache.org</p>
<p>Next (<a title="step to run perl" href="http://itcomputerzone.com/programming/stepstorunperl.html" target="_self">step to run perl</a>)</p>


<p>Related posts:<ol><li><a href='http://itcomputerzone.com/programming/stepstorunperl.html' rel='bookmark' title='Permanent Link: Steps to Run Perl'>Steps to Run Perl</a> <small>Running PERL before you may need to read about practitioner...</small></li><li><a href='http://itcomputerzone.com/programming/automatic-shutdown-pc-with-simple-batch-programming.html' rel='bookmark' title='Permanent Link: Automatic Shutdown PC With simple batch programming'>Automatic Shutdown PC With simple batch programming</a> <small>after knowing the basic programming batch (batch introduction) we know...</small></li><li><a href='http://itcomputerzone.com/programming/introduction-batch-programming.html' rel='bookmark' title='Permanent Link: Introduction Batch Programming'>Introduction Batch Programming</a> <small>batch programming language is used by the Command Prompt (CMD),...</small></li></ol></p>
<p><!-- || --></p>]]></content:encoded>
			<wfw:commentRss>http://itcomputerzone.com/programming/practitioners-programming-perl.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

