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
REGEXP_SUBSTR('a','ab+') : Wild Card « Regular Expressions « Oracle PL / SQL
Oracle PL / SQL
Regular Expressions
Wild Card
REGEXP_SUBSTR('a','ab+')
SQL> SQL> SELECT REGEXP_SUBSTR(
'a'
,
'ab+'
) FROM dual; R - SQL>
Related examples in the same category
1.
'.' matches anything
2.
REGEXP_INSTR(description,'F.')
3.
REGEXP_INSTR(description,'e.e'): Find a letter and then whatever until there was another of the same letter
4.
REGEXP_INSTR(description,'i.i'): 'i' followed by any one character, followed by another 'i'
5.
REGEXP_SUBSTR('Yababa dababa do','a.a')
6.
REGEXP_SUBSTR('abbbb','ab+')
7.
REGEXP_SUBSTR('abbbb','ab*') (2)
8.
To see the difference between '*' and '+'
9.
'?': match exactly zero or one repetition
10.
'+': match one or more repetitions
11.
'*' (match zero or more repetitions)
12.
REGEXP_INSTR(description, 'e.+e'): An 'e' followed by any number of other characters and then another 'e'
13.
REGEXP_SUBSTR(description,'e.*e')
14.
Use the non-greedy '?'