| Author |
Validating the data using Oracle PL SQL
|
Vinod Vijay
Ranch Hand
Joined: Sep 13, 2011
Posts: 114
|
|
Hi, I have written an Oracle PL SQL Function which accepts few IN paramters.
For e.g.
function abc(x IN Varchar2(200))
/
The parameter x accepts the order no. I want to make sure that x contains only order_number(always in numerics only) or order_number plus line_number(Order_Number-Line_Number -> for e.g 11101-1, 11102-34 in format etc separated by '-')
I have read regular expression that is used in javascript to validate the strings at front end but is there anything in Oracle that can be used just like regular expression to put strong validations?
Please advice.
|
Vinod Vijay Nair
|
 |
Martin Vajsar
Bartender
Joined: Aug 22, 2010
Posts: 2384
|
|
|
Google for pl/sql regular expressions. There are many examples and tutorials on the web.
|
 |
 |
|
|
subject: Validating the data using Oracle PL SQL
|
|
|