CSC/ECE 517 Summer 2008/wiki1 1 mb: Difference between revisions
Jump to navigation
Jump to search
Line 7: | Line 7: | ||
An instance of the Pattern class represents a regular expression that is specified in string form in a syntax similiar to that used by Perl. | An instance of the Pattern class represents a regular expression that is specified in string form in a syntax similiar to that used by Perl. | ||
Package summary for java.util.regex | Package summary for java.util.regex <br/> | ||
http://java.sun.com/j2se/1.4.2/docs/api/java/util/regex/package-summary.html | http://java.sun.com/j2se/1.4.2/docs/api/java/util/regex/package-summary.html | ||
=== How regular expressions are handled in Ruby === | === How regular expressions are handled in Ruby === | ||
Class summary for Regexp | Class summary for Regexp <br/> | ||
http://www.ruby-doc.org/core/classes/Regexp.html | http://www.ruby-doc.org/core/classes/Regexp.html | ||
=== Other useful links === | === Other useful links === | ||
java.util.regex Examples from The Java Developers Almanac 1.4 | java.util.regex Examples from The Java Developers Almanac 1.4 <br/> | ||
http://exampledepot.com/egs/java.util.regex/pkg.html | http://exampledepot.com/egs/java.util.regex/pkg.html |
Revision as of 00:48, 7 June 2008
Regular expression support in Java and Ruby
What are regular expressions
How regular expressions are handled in Java
An instance of the Pattern class represents a regular expression that is specified in string form in a syntax similiar to that used by Perl.
Package summary for java.util.regex
http://java.sun.com/j2se/1.4.2/docs/api/java/util/regex/package-summary.html
How regular expressions are handled in Ruby
Class summary for Regexp
http://www.ruby-doc.org/core/classes/Regexp.html
Other useful links
java.util.regex Examples from The Java Developers Almanac 1.4
http://exampledepot.com/egs/java.util.regex/pkg.html