Home
Oracle PL / SQL
Aggregate Functions
Analytical Functions
Char Functions
Constraints
Conversion Functions
Cursor
Data Type
Date Timezone
Hierarchical Query
Index
Insert Delete Update
Large Objects
Numeric Math Functions
Object Oriented Database
PL SQL
Regular Expressions
Report Column Page
Result Set
Select Query
Sequence
SQL Plus
Stored Procedure Function
Subquery
System Packages
System Tables Views
Table
Table Joins
Trigger
User Previliege
View
XML
Menu
Brackets « Regular Expressions « Oracle PL / SQL
Oracle PL / SQL
Regular Expressions
Brackets
1.
[whatever]: a match of whatever set of characters is included inside the brackets in any order
2.
A match for any vowel followed by an 'r' or 'p'
3.
Select only addresses that contain vowels
4.
REGEXP_INSTR(description,'[aeiou][aeiou]'): Look for two consecutive vowels