Home Web Front-end JS Tutorial Practical JS regular expressions (mobile phone number/IP regular expression/zip code regular expression/telephone number, etc.)_javascript skills

Practical JS regular expressions (mobile phone number/IP regular expression/zip code regular expression/telephone number, etc.)_javascript skills

May 16, 2016 pm 05:43 PM
js regular expression Telephone post code

//Check whether it is composed entirely of numbers

Copy code The code is as follows:

function isDigit( s)
{
var patrn=/^[0-9]{1,20}$/;
if (!patrn.exec(s)) return false
return true
}

//Verify login name: You can only enter 5-20 character strings starting with letters, with numbers, "_", and "."
Copy code The code is as follows:

function isRegisterUserName(s)
{
var patrn=/^[a- zA-Z]{1}([a-zA-Z0-9]|[._]){4,19}$/;
if (!patrn.exec(s)) return false
return true
}

//Verify user name: only 1-30 strings starting with letters can be entered
Copy Code The code is as follows:

function isTrueName(s)
{
var patrn=/^[a-zA-Z]{1,30 }$/;
if (!patrn.exec(s)) return false
return true
}

//Verification password: only 6-20 can be entered Letters, numbers, underscores
Copy code The code is as follows:

function isPasswd(s)
{
var patrn=/^(w){6,20}$/;
if (!patrn.exec(s)) return false
return true
}

//Verify ordinary telephone and fax numbers: it can start with " ", and in addition to numbers, it can contain "-"
Copy code The code is as follows:

function isTel(s)
{
//var patrn=/^[ ]{0,1}(d){1,3} [ ]?([-]?(d){1,12}) $/;
var patrn=/^[ ]{0,1}(d){1,3}[ ]?([-] ?((d)|[ ]){1,12}) $/;
if (!patrn.exec(s)) return false
return true
}

//Verify mobile phone number: must start with a number. In addition to numbers, it can contain "-"
Copy code The code is as follows :

function isMobil(s)
{
var patrn=/^[ ]{0,1}(d){1,3}[ ]?([-]? ((d)|[ ]){1,12}) $/;
if (!patrn.exec(s)) return false
return true
}

//Verify postal code
Copy code The code is as follows:

function isPostalCode(s)
{
//var patrn=/^[a-zA-Z0-9]{3,12}$/;
var patrn=/^[a-zA-Z0-9 ]{3, 12}$/;
if (!patrn.exec(s)) return false
return true
}

//Verify search keywords
Copy code The code is as follows:

function isSearch(s)
{
var patrn=/^ [^`~!@#$%^&*() =|][]{}:;',.<>/?]{1}[^`~!@$%^&() =| ][]{}:;',.<>?]{0,19}$/;
if (!patrn.exec(s)) return false
return true
}

//Check whether the IP address is
Copy code The code is as follows:

function isIP(s) //by zergling
{
var patrn=/^[0-9.]{1,20}$/;
if (!patrn.exec(s)) return false
return true
}

Copy code The code is as follows:

"^d $" //음이 아닌 정수(양의 정수 0)
"^[0-9]*[1-9][0-9]*$" //양의 정수
"^((-d )|(0 ))$" //양수가 아닌 정수(음의 정수 0)
"^-[0-9]*[1-9][0-9] *$ " //음의 정수
"^-?d $" //정수
"^d (.d )?$" //음이 아닌 부동 소수점 수(양의 부동 소수점 수 0)
"^(( [0-9] .[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*.[ 0-9] ) |([0-9]*[1-9][0-9]*))$" //양수 부동 소수점 숫자
"^((-d (.d )?)| (0 (.0 ) ?))$" //양수가 아닌 부동 소수점 숫자 (음의 부동 소수점 숫자 0)
"^(-(([0-9] .[0-9]*[1- 9][0-9]*) |([0-9]*[1-9][0-9]*.[0-9] )|([0-9]*[1-9][0 -9]*)))$" //음수 부동 소수점 수
"^(-?d )(.d )?$" //부동 소수점 수
"^[A-Za-z] $ " //영문 26자로 구성된 문자열
"^[A-Z] $" //영문 대문자 26자로 구성된 문자열
"^[a-z] $" //영문 소문자 26자로 구성된 문자열 letter
"^[A-Za-z0-9] $" // 숫자와 영문 26자로 구성된 문자열
"^w $" // 숫자와 영문 26자, 밑줄로 구성된 문자열
"^w $" // 숫자와 영문 26자로 이루어진 문자열
🎜>"^[w-] (.[w-] )*@[w-] (.[w-] ) $"   //이메일 주소
"^[a-zA-z] ://( w (-w )*)(.(w (-w )*))*(?S*)?$" //url
"^[A-Za-z0-9_]*$"
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What should I do if there is no sound when I call? What should I do if there is no sound when I call? Mar 27, 2023 pm 03:09 PM

Reasons and solutions for no sound when making calls: 1. If the signal is poor, you can go to a place with good signal and call again; 2. If the volume is muted or adjusted to the minimum, you can set the call volume in the menu; 3. If it is caused by pausing or prohibiting calls, click the corresponding button to try; 4. If it is caused by the phone suddenly crashing or losing power, restart or charge the phone; 5. If it is caused by the earpiece being damaged, just contact after-sales service for repair.

Why can't I make calls on my mobile phone? Why can't I make calls on my mobile phone? Sep 12, 2023 pm 05:44 PM

The reason why mobile phone calls cannot come in may be due to signal problems, airplane mode, SIM card problems, blacklist settings, mobile phone settings problems, software problems, or operator problems. Detailed introduction: 1. Signal problem. The area where the mobile phone is located has poor signal or is in a signal blind area, which may cause the call to be unable to be answered or made. You can try to move to an open place, or close to a window or other area with a good signal to obtain the best signal. Better signal; 2. Airplane mode. If the phone is in airplane mode, the phone function will be disabled, resulting in the inability to answer or make incoming calls, etc.

Why can't I make calls on my mobile phone? Why can't I make calls on my mobile phone? Nov 23, 2023 pm 04:04 PM

Reasons why mobile phone calls cannot be made: 1. Signal problem; 2. Mobile phone account problem; 3. Mobile phone setting problem; 4. SIM card problem; 5. Operator network problem; 6. Mobile phone hardware problem; 7. Software problem; 8 , specific area or time period issues; 9. Service provider issues; 10. Other issues. Detailed introduction: 1. Signal problems may be one of the most common reasons why mobile phones cannot make calls. If the mobile phone does not have enough signal, it may not be possible to make calls; 2. Mobile phone account problems, if the mobile phone account is in arrears or has been suspended from service, etc. .

What's wrong with my mobile phone that can make calls but not surf the Internet? What's wrong with my mobile phone that can make calls but not surf the Internet? Sep 19, 2023 pm 04:48 PM

The reason why the mobile phone can make calls but cannot access the Internet may be that the data traffic switch is turned off, the APN setting is incorrect, the mobile network signal is weak, operator restrictions or failures, mobile phone software problems or SIM card problems, etc. Detailed introduction: 1. The data flow switch is turned off. On mobile phones, there is usually a data flow switch to control whether the phone uses mobile data to access the Internet. If the data flow switch is turned off, even if the phone is connected to the mobile network, it cannot use data to access the Internet. , users can find and turn on the data traffic switch in the phone's settings; 2. APN setting error, etc.

How to set the number not to be displayed when making calls How to set the number not to be displayed when making calls Sep 11, 2023 am 10:28 AM

Not displaying the number when making calls can be set by using the mobile phone dialing settings, using the landline dialing settings and using a third-party application. Detailed introduction: 1. Use mobile phone dialing settings, in the settings menu, look for "Show my number" or similar options, and then select "Close" or "Hide"; 2. Use landline dialing settings, dial *67, Then enter the number you want to call; 3. Search for "anonymous dialing" or similar keywords in the app store, and then select the appropriate application to install and set up.

What does high frequency call mean? What does high frequency call mean? Sep 21, 2022 pm 03:28 PM

High-frequency calling calls refer to calls with a relatively high frequency of outgoing calls. The average user will only make a dozen or so calls a day, and may not even make one call a day; while high-frequency calls will continue to make calls every day. Compared with ordinary people, the frequency is lower. Much higher. Behind high-frequency calls, there are mostly two situations: fraudulent calls or calls to promote business. Through big data and advanced technical means, operators can detect frequently dialed calls. These calls are likely to be suspected of harassment and fraud, and users need to be careful when answering them.

Why can't I make calls on my Apple phone? Why can't I make calls on my Apple phone? Mar 08, 2024 pm 06:30 PM

When users are unable to make calls when using their mobile phones, they will have a headache and don’t know how to solve the problem. There are many reasons why they cannot make calls. Today I will share the possible reasons with you. Analysis of the reasons why the iPhone cannot make calls: 1. During the call, the operator's network signal at your location is weak, which may affect the call quality. 2. The Apple mobile phone you hold is a customized or locked version, which only supports the SIM card of the corresponding operator. Replacing the card may cause malfunctions. 3. The Apple mobile phone system has unstable factors that interfere with the call function. 4. The SIM card in the mobile phone is damaged, causing the mobile phone to be unable to make calls normally. 5. There is a hardware problem with the device itself that prevents calls. Users can check whether there is a problem with the phone. 6.

How to remove a phone call from the blacklist. The latest WeChat blacklist settings and cancellation methods. How to remove a phone call from the blacklist. The latest WeChat blacklist settings and cancellation methods. Mar 03, 2024 am 10:34 AM

When using WeChat, if you encounter someone you don't want to contact, how do you add it to the blacklist and how do you cancel the blacklist setting? Blacklist setting method: Find the friend who needs to set the blacklist in the address book, click on the friend to enter the friend details page, click the 3-dot icon in the upper right corner on the friend profile setting page, find the "Add to blacklist" option and turn on the button. After confirmation, the system will pop up a dialog box. Click Confirm to add the friend to the blacklist. How to cancel the blacklist? If a friend is blacklisted out of anger, what should you do if you want to cancel the blacklist? Open WeChat, click "My" to enter the WeChat settings screen, scroll down to find "Privacy", enter WeChat privacy settings, scroll down to find "Contact Blacklist", and click to enter. Find the device you want to cancel the blacklist

See all articles