Monthly Archives: March 2013

Password Strength and Regular expression in ApEx

Create a validation of the type ‘Function Returning Boolean’ and add the following code: ############################## declare l_return boolean; begin if regexp_like(:P120_NEW_PASSWORD, ‘^.*[a-z].*$’) — this is for small letter from a -z and regexp_like(:P120_NEW_PASSWORD, ‘^.*[A-Z].*$’) — this is for capital letters … Continue reading

Posted in Application Express | Tagged , , , | Leave a comment