Oracle's regular application matches the phone number

Source: Internet
Author: User

Match the rules of mobile phone numbers in mainland China according to the requirements

--1 Table Preparation
CREATE TABLE Test_regexp
(
Object Varchar2 (50)
);

--2 Data Preparation

Insert into Test_regexp (OBJECT)
VALUES (' 18710128107 ');

Insert into Test_regexp (OBJECT)
VALUES (' 1871012810 ');

Insert into Test_regexp (OBJECT)
VALUES (' 1871012819h ');

Insert into Test_regexp (OBJECT)
VALUES (' 187a0128107 ');

Insert into Test_regexp (OBJECT)
VALUES (' 12311111111 ');

Insert into Test_regexp (OBJECT)
VALUES (' 13800000000 ');

Insert into Test_regexp (OBJECT)
VALUES (' 17011111111 ');

Insert into Test_regexp (OBJECT)
VALUES (' 15211111111 ');

Insert into Test_regexp (OBJECT)
VALUES (' 23452124531 ');

--3 SQL

SELECT * from Test_regexp where Regexp_like (object, ' ^1[3578]\d{9}$ ');

--4 return Results

18710128107
13800000000
17011111111
15211111111

Oracle's regular application matches the phone number

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.