| Author |
Oracle Regular Expressions
|
Janeice DelVecchio
Saloon Keeper
Joined: Sep 14, 2009
Posts: 1557
|
|
I'm studying for "Oracle Database SQL Expert". There is a whole section about regular expressions:
Regular Expression Support
[ ] Using Meta Characters
[ ] Regular Expression Functions
[ ] Replacing Patterns
[ ] Regular Expressions and Check Constraints
Are these the same regular expressions used in Java? If not, how do they differ?
Thanks
|
When you do things right, people won't be sure you've done anything at all.
|
 |
Christophe Verré
Marshal
Joined: Nov 24, 2005
Posts: 14361
|
|
|
Oracle's regular expressions are based on the POSIX Extended Regular Expressions (ERE). Java adds more functionality to it, but I think the basic syntax is the same. You'll find some comparative information here.
|
[SCBCD Wall of Fame] [My Blog]
All roads lead to JavaRanch
Help Japan. Make a donation.
|
 |
Janeice DelVecchio
Saloon Keeper
Joined: Sep 14, 2009
Posts: 1557
|
|
Thanks a lot!
|
 |
 |
|
|
subject: Oracle Regular Expressions
|
|
|