CSC/ECE 517 Summer 2008/wiki1 1 mb: Difference between revisions
Line 17: | Line 17: | ||
the [http://java.sun.com/j2se/1.4.2/docs/api/java/util/regex/Matcher.html Matcher class]. | the [http://java.sun.com/j2se/1.4.2/docs/api/java/util/regex/Matcher.html Matcher class]. | ||
Instances of the Pattern class are used to represent regular expressions. Instances of the Matcher class are used to match the regular expressions described by the Pattern object against strings. | Instances of the Pattern class are used to represent regular expressions. Instances of the Matcher class are used to match the regular expressions described by the Pattern object against strings. The Pattern class provides methods to facilitate splitting strings based upon provided regular expressions, while the Matcher class provides methods that allow patterns to be found, replaced, and examined. | ||
=== How regular expressions are handled in Ruby === | === How regular expressions are handled in Ruby === |
Revision as of 01:36, 7 June 2008
Regular expression support in Java and Ruby
What are regular expressions?
Regular expressions provide an efficient way to match patterns against strings. Both Java and Ruby use a regular expression syntax similar to Perl.
Perl regular expression syntax
How regular expressions are handled in Java
In Java, regular expressions are supported using the java.util.regex package.
Package summary for java.util.regex
The java.util.regex package contains two classes:
The Pattern class and
the Matcher class.
Instances of the Pattern class are used to represent regular expressions. Instances of the Matcher class are used to match the regular expressions described by the Pattern object against strings. The Pattern class provides methods to facilitate splitting strings based upon provided regular expressions, while the Matcher class provides methods that allow patterns to be found, replaced, and examined.
How regular expressions are handled in Ruby
Class summary for Regexp
http://www.ruby-doc.org/core/classes/Regexp.html
Example Uses
Other useful links
Basic regular expression syntax
Advanced regular expression syntax
java.util.regex Examples from The Java Developers Almanac 1.4
http://exampledepot.com/egs/java.util.regex/pkg.html