| Author |
Oracle Regular Expressions
|
Janeice DelVecchio
Saloon Keeper
Joined: Sep 14, 2009
Posts: 1611
|
|
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é
Sheriff
Joined: Nov 24, 2005
Posts: 14669
|
|
|
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.
|
[My Blog]
All roads lead to JavaRanch
|
 |
Janeice DelVecchio
Saloon Keeper
Joined: Sep 14, 2009
Posts: 1611
|
|
Thanks a lot!
|
 |
 |
|
|
subject: Oracle Regular Expressions
|
|
|