Language: PL/SQL Highlight Mode: PLSQL Last Modified: March 12th, 2009
-- search for Social Security Numbers (xxx-xx-xxxx)SELECT*FROM sandbox
WHERE REGEXP_LIKE(regex_test,'^[0-9]{3}-[0-9]{2}-[0-9]{4}$');-- match US phone number with or without parenthesesSELECT*FROM sandbox
WHERE REGEXP_LIKE(regex_test,'^\([0-9]{3}\)[:space:]?[0-9]{3}(-|[:space:])?[0-9]{4}$|^[0-9]{3}-?[0-9]{3}-?[0-9]{4}$');-- match US ZIP codes SELECT*FROM sandbox
WHERE REGEXP_LIKE(regex_test,'[0-9]{5}(?-[0-9]{4})?');-- handy pattern for matching an IP address:'(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)'
SQL University.net courses meet the most demanding needs of the business world for advanced education
in a cost-effective manner. SQL University.net courses are available immediately for IT professionals
and can be taken without disruption of your workplace schedule or processes.
Compared to traditional travel-based training, SQL University.net saves time and valuable corporate
resources, allowing companies to do more with less. That's our mission, and that's what we deliver.