What are regular expressions in java? How to use thme? Can any one give examples of those?
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35220
7
posted
0
Regular expression in Java aren't different from regexps in other languages. They use the Perl syntax for the most part. Or are you looking an introduction to regexps in general? Then http://www.regular-expressions.info/ is for you.
Examples of using the java.util.regex package can be found here.