User contributions
Jump to navigation
Jump to search
- 09:44, 9 June 2011 diff hist -144 m Tree Tutorial current
- 08:59, 26 January 2011 diff hist +572 N Perl:Format Printing Created page with "{{String Functions}} You can print formatted numbers using the <code>printf</code> function. <question lang='perl'> You can build a string using printf. The %8d place holder will..." current
- 08:56, 26 January 2011 diff hist -15 m Python:Format Printing
- 09:40, 23 March 2010 diff hist +224 m TODO
- 09:24, 16 January 2010 diff hist +46 m PHP:Hash Maps current
- 09:41, 15 January 2010 diff hist -11 m Perl:Hash Maps →Getting all values back current
- 09:29, 15 January 2010 diff hist +3,407 N Perl:Hash Maps Created page with '{{Data Structures}} __TOC__ <table><tr><td> A hash table (also known as associative array, lookup table, dictionary, hash) is a way of storing values against keys. In Perl the ke...'
- 09:19, 15 January 2010 diff hist -140 m Python:Hash Maps current
- 09:10, 15 January 2010 diff hist +446 N Python:Convert Chars to a String Created page with '{{convertDataTypes}} <question lang="py" className="Demo"><prog> a = chr(65) b = chr(66) print "ASCII 65 is: %s" % a print "ASCII 66 is: %s" % b </prog> <p> Python does not have ...' current
- 09:07, 15 January 2010 diff hist +490 N Python:Convert a String to Chars Created page with '{{convertDataTypes}} <question lang="py" className="Demo"><prog> s = "ABCD" print "Character number 2 is: %s" % s[2] print "The ASCII value is: %d" % ord(s[2]) </prog> <p> Python...' current
- 09:04, 15 January 2010 diff hist +529 N Perl:Convert a String to Chars Created page with '{{convertDataTypes}} <question lang="pl" className="Demo"><prog> my $s = "ABCD"; print "Character number 2 is: " . substr($s, 2, 1) . "\n"; print "The ASCII value is: " . ord(sub...' current
- 09:02, 15 January 2010 diff hist +452 N Perl:Convert Chars to a String Created page with '{{convertDataTypes}} <question lang="pl" className="Demo"><prog> my $a = chr(65); my $b = chr(66); print "ASCII 65 is: $a\n"; print "ASCII 66 is: $b\n"; </prog> <p> Perl does not...' current
- 08:51, 15 January 2010 diff hist -1 m PHP:Convert a String to Chars current
- 08:50, 15 January 2010 diff hist 0 m PHP:Convert Chars to a String current
- 08:50, 15 January 2010 diff hist -1 m PHP:Convert Chars to a String
- 20:48, 8 January 2010 diff hist -16 m Python:Hash Maps
- 20:48, 8 January 2010 diff hist +3,285 N Python:Hash Maps Created page with '{{Data Structures}} __TOC__ <table><tr><td> A hash table (also known as associative array, lookup table, dictionary, hash) is a way of storing values against keys. Often the keys...'
- 20:42, 8 January 2010 diff hist -36 m PHP:Hash Maps →Getting keys back in the right order
- 20:36, 8 January 2010 diff hist -2 m PHP:Hash Maps
- 20:28, 8 January 2010 diff hist -16 m PHP:Hash Maps
- 03:09, 24 November 2009 diff hist +3,411 N Python:Formatting Numbers Tutorial Created page with '{{World Factbook Tutorial}} <shell className="Cia" import="shells_bbc.xml#funpy"/> A floating point number includes a decimal point for example: <pre>3.1 3.1415</pre> You might w...'
- 03:00, 24 November 2009 diff hist +2,100 N Python:Composing Functions Tutorial Created page with '{{World Factbook Tutorial}} <shell className="Cia" import="shells_bbc.xml#funpy"/> You may want to review some examples before you start: [http://www.progzoo.net/ht30Fun/ String ...'
- 02:51, 24 November 2009 diff hist +3,188 N Python:Multiple Conditions Tutorial Created page with '{{World Factbook Tutorial}} <shell className="Cia" import="shells_bbc.xml#funpy"/> You may want to review some examples before you start: and, [[OR of t...' current
- 02:24, 24 November 2009 diff hist +133 Ruby:Read a Text File →Use each_line current
- 09:22, 23 November 2009 diff hist +67 m Python:Printing Several Items Tutorial
- 09:17, 23 November 2009 diff hist -7 m Python:Filtering Tutorial
- 06:34, 23 November 2009 diff hist +24 Ruby:Find Position current
- 06:32, 23 November 2009 diff hist +33 Ruby:Lower Case current
- 06:31, 23 November 2009 diff hist +31 Ruby:Upper Case current
- 06:30, 23 November 2009 diff hist +36 Ruby:Join String current
- 06:28, 23 November 2009 diff hist +64 Ruby:Substring current
- 06:25, 23 November 2009 diff hist +10 Ruby:Equal Strings current
- 06:24, 23 November 2009 diff hist +18 m Ruby:String Length current
- 06:22, 23 November 2009 diff hist +499 N Ruby:Checking for a Suffix Created page with '{{Simple Tests}} <shell className="Bbc" import="shells_bbc.xml#funrb"/> <question xmlns:htm="http://www.w3.org/1999/xhtml" className="Cia" copyFile="bbc.txt"><prog><![CDATA[ def ...' current
- 06:21, 23 November 2009 diff hist +497 N Ruby:Checking for a Prefix Created page with '{{Simple Tests}} <shell className="Bbc" import="shells_bbc.xml#funrb"/> <question xmlns:htm="http://www.w3.org/1999/xhtml" className="Cia" copyFile="bbc.txt"><prog><![CDATA[ def ...' current
- 04:48, 23 November 2009 diff hist +482 PHP:Substring current
- 02:26, 23 November 2009 diff hist +58 m Perl:Accessing an Array →The last element of array @x is $x[-1] current
- 23:17, 22 November 2009 diff hist +1,568 N PHP:Convert a Number to a String Created page with '{{Simple Types}} <p>There is usually no need to convert between numbers and strings in PHP. Numbers and strings are interchangeable: if you use a number in a place that expects a...' current
- 23:14, 22 November 2009 diff hist +1,339 N Perl:Convert a Number to a String Created page with '{{Simple Types}} <p>There is usually no need to convert between numbers and strings in Perl. Numbers and strings are interchangeable: if you use a number in a place that expects ...' current
- 23:09, 22 November 2009 diff hist +882 N Ruby:Convert a Number to a String Created page with '{{Simple Types}} <p>The easy way to do this is to use the to_s method</p> <p>The powerful way to do this is to use the % string formatting operator</p> ==Number to String by to_s...' current
- 23:08, 22 November 2009 diff hist +886 N Python:Convert a Number to a String Created page with '{{Simple Types}} <p>The easy way to do this is to use the str() function</p> <p>The powerful way to do this is to use the % string formatting operator</p> ==Number to String by s...' current
- 22:39, 22 November 2009 diff hist +529 N Perl:Checking for a Suffix Created page with '{{Simple Tests}} <shell className="Bbc" import="shells_bbc.xml#funpl" lang="pl"/> <question xmlns:htm="http://www.w3.org/1999/xhtml" className="Cia" copyFile="bbc.txt"><prog><![C...' current
- 22:37, 22 November 2009 diff hist +527 N Perl:Checking for a Prefix Created page with '{{Simple Tests}} <shell className="Bbc" import="shells_bbc.xml#funpl" lang="pl"/> <question xmlns:htm="http://www.w3.org/1999/xhtml" className="Cia" copyFile="bbc.txt"><prog><![C...' current
- 22:34, 22 November 2009 diff hist +736 N Perl:NOT of a Condition Created page with '{{Simple Tests}} <shell className="Bbc" import="shells_bbc.xml#funpl" lang="pl"/> <question xmlns:htm="http://www.w3.org/1999/xhtml" className="Cia" copyFile="bbc.txt"><prog><![C...' current
- 22:31, 22 November 2009 diff hist +474 N Perl:Checking for a Substring Created page with '{{Simple Tests}} <shell className="Bbc" import="shells_bbc.xml#funpl" lang="pl"/> <question xmlns:htm="http://www.w3.org/1999/xhtml" className="Cia" copyFile="bbc.txt"><prog><![C...' current
- 22:28, 22 November 2009 diff hist +813 N Perl:OR of two Conditions Created page with '<shell className="Cia" import="shells_bbc.xml#funpl" lang="pl"/> {{Simple Tests}} ==or== <question xmlns:htm="http://www.w3.org/1999/xhtml" className="Cia" copyFile="bbc.txt"><pr...' current
- 22:26, 22 November 2009 diff hist -10 m Perl:AND of two Conditions current
- 22:24, 22 November 2009 diff hist +678 N Perl:AND of two Conditions Created page with '<shell lang="py" className="Cia" import="shells_bbc.xml#funpl" lang="pl"/> {{Simple Tests}} ==and== <question xmlns:htm="http://www.w3.org/1999/xhtml" className="Cia" copyFile="b...'
- 22:22, 22 November 2009 diff hist -2 m Python:AND of two Conditions current
- 22:21, 22 November 2009 diff hist +518 N Perl:Comparing Numbers Created page with '{{Simple Tests}} <shell className="Bbc" import="shells_bbc.xml#funpl" lang="pl"/> <question xmlns:htm="http://www.w3.org/1999/xhtml" className="Cia" copyFile="bbc.txt"><prog><![C...' current