diff options
Diffstat (limited to 'examples/0README.html')
-rw-r--r-- | examples/0README.html | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/examples/0README.html b/examples/0README.html index 303d44d..e566784 100644 --- a/examples/0README.html +++ b/examples/0README.html @@ -27,7 +27,7 @@ Unicode example to parse "Hello, World!" in Greek. <p>
<li><a href="chemicalFormulas.py">chemicalFormulas.py</a><br>
-Simple example to demonstrate the use of ParseResults returned from parseString().
+Simple example to demonstrate the use of ParseResults returned from parseString().
Parses a chemical formula (such as "H2O" or "C6H5OH"), and walks the returned list of tokens to calculate the molecular weight.
</li>
<p>
@@ -124,7 +124,7 @@ Parser for CORBA IDL files. </li>
<p>
-<li><a href="mozillaCalendarParser.py">mozillaCalendarParser.py</a>
+<li><a href="mozillaCalendarParser.py">mozillaCalendarParser.py</a>
<i>~ submission by Petri Savolainen</i><br>
Parser for Mozilla calendar (*.ics) files.
</li>
@@ -167,19 +167,19 @@ example configuration file. <p>
<li><a href="romanNumerals.py">romanNumerals.py</a><br>
-A Roman numeral generator and parser example, showing the power of parse actions
+A Roman numeral generator and parser example, showing the power of parse actions
to compile Roman numerals into their integer values.
</li>
<p>
<li><a href="removeLineBreaks.py">removeLineBreaks.py</a><br>
A string transformer that converts text files with hard line-breaks into one with line breaks
-only between paragraphs. Useful when converting downloads from
-<a href="http://www.gutenberg.org">Project Gutenberg</a> to import to word processing apps
+only between paragraphs. Useful when converting downloads from
+<a href="http://www.gutenberg.org">Project Gutenberg</a> to import to word processing apps
that can reformat paragraphs once hard line-breaks are removed, or for loading into your Palm Pilot for portable perusal.
<p>
-See <a href="Successful Methods of Public Speaking.txt">Successful Methods of Public Speaking.txt</a> and
-<a href="Successful Methods of Public Speaking(2).txt">Successful Methods of Public Speaking(2).txt</a> for a sample
+See <a href="Successful Methods of Public Speaking.txt">Successful Methods of Public Speaking.txt</a> and
+<a href="Successful Methods of Public Speaking(2).txt">Successful Methods of Public Speaking(2).txt</a> for a sample
before and after (text file courtesy of Project Gutenberg).
</li>
<p>
@@ -190,13 +190,13 @@ An example program showing the utility of the listAllMatches option when specify <p>
<li><a href="linenoExample.py">linenoExample.py</a><br>
-An example program showing how to use the string location to extract line and column numbers, or the
+An example program showing how to use the string location to extract line and column numbers, or the
source line of text.
</li>
<p>
<li><a href="parseListString.py">parseListString.py</a><br>
-An example program showing a progression of steps, how to parse a string representation of a Python
+An example program showing a progression of steps, how to parse a string representation of a Python
list back into a true list.
</li>
<p>
@@ -208,7 +208,7 @@ returning a Python value of the original type. <p>
<li><a href="indentedGrammarExample.py">indentedGrammarExample.py</a><br>
-An example program showing how to parse a grammar using indentation for grouping,
+An example program showing how to parse a grammar using indentation for grouping,
such as is done in Python.
</li>
<p>
@@ -220,7 +220,7 @@ An example program showing how to use the new operatorPrecedence helper method t <p>
<li><a href="simpleBool.py">simpleBool.py</a><br>
-An example program showing how to use the new operatorPrecedence helper method to define a
+An example program showing how to use the new operatorPrecedence helper method to define a
boolean expression parser, with parse actions associated with each operator to "compile" the expression
into a data structure that will evaluate the expression's boolean value.
</li>
@@ -290,7 +290,7 @@ domain objects instead of just strings. <li><a href="datetimeParseActions.py">datetimeParseActions.py</a><br>
<b>New in version 1.5.7</b><br>
-Parse actions example showing a parse action returning a datetime object instead of
+Parse actions example showing a parse action returning a datetime object instead of
string tokens, and doing validation of the tokens, raising a ParseException if the
given YYYY/MM/DD string does not represent a valid date.
</li>
@@ -298,7 +298,7 @@ given YYYY/MM/DD string does not represent a valid date. <li><a href="position.py">position.py</a><br>
<b>New in version 1.5.7</b><br>
-Demonstration of a couple of different ways to capture the location a particular
+Demonstration of a couple of different ways to capture the location a particular
expression was found within the overall input string.
</li>
<p>
|