Sharing of commonly used regular expressions in js
This article mainly shares with you the commonly used regular expressions in js and made a summary. I hope it can help everyone.
Verify number: ^[0-9]*$
Verify n-digit number: ^\d{n}$
Verify at least n-digit number: ^\d{n,}$
Verify numbers with m-n digits: ^\d{m,n}$
Verify numbers starting with zero and non-zero: ^(0|[1-9][0-9]*)$
Verify a positive real number with two decimal places: ^[0-9]+(.[0-9]{2})?$
Verify a positive real number with 1-3 decimal places: ^[0-9]+ (.[0-9]{1,3})?$
Verify non-zero positive integers: ^\+?[1-9][0-9]*$
Verify non-zero negative integers :^\-[1-9][0-9]*$
Verify non-negative integers (positive integers + 0) ^\d+$
Verify non-positive integers (negative integers + 0) ^((- \d+)|(0+))$
Verify a character of length 3: ^.{3}$
Verify a string of 26 English letters: ^[A-Za-z]+$
Verify a string consisting of 26 uppercase English letters: ^[A-Z]+$
Verify a string consisting of 26 lowercase English letters: ^[a-z]+$
Verify a string consisting of numbers and 26 A string consisting of 26 English letters: ^[A-Za-z0-9]+$
Verify a string consisting of numbers, 26 English letters or underscores: ^\w+$
Verify user password:^ [a-zA-Z]\w{5,17}$ The correct format is: starting with a letter, the length is between 6-18, and can only contain characters, numbers and underscores.
Verify whether it contains characters such as ^%&',;=?$\": [^%&',;=?$\x22]+
Verify Chinese characters: ^[\u4e00-\u9fa5],{ 0,}$
Verify email address: ^\w+[-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$
Verify InternetURL: ^http://([\w-]+\.)+[\w-]+(/[\w-./?%&=]*)?$;^[a-zA -z]+://(w+(-w+)*)(.(w+(-w+)*))*(?S*)?$
Verification phone number: ^(\(\d{3, 4}\)|\d{3,4}-)?\d{7,8}$: --The correct format is: XXXX-XXXXXXX, XXXX-XXXXXXXX, XXX-XXXXXXX, XXX-XXXXXXXX, XXXXXXX, XXXXXXXX.
Verify ID number (15 or 18 digits): ^\d{15}|\d{}18$
Verify 12 months of the year: ^(0?[1-9]| 1[0-2])$ The correct format is: "01"-"09" and "1" "12"
Verify the 31 days of a month: ^((0?[1-9])|(( 1|2)[0-9])|30|31)$ The correct format is: 01, 09 and 1, 31.
Integer: ^-?\d+$
Non-negative floating point number (positive floating point number + 0): ^\d+(\.\d+)?$
Positive floating point number^(([0-9]+\.[0-9]*[1-9][0-9]*) |([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*))$
Non-positive floating point number (negative floating point number + 0) ^((-\d+(\.\d+)?)|(0+(\.0+)?))$
Negative floating point number^( -(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\. [0-9]+)|([0-9]*[1-9][0-9]*)))$
Floating point number^(-?\d+)(\.\d+)?
China phone number verification
The matching form is: 0511-4405222 or 021-87888822 or 021-44055520-555 or (0511)4405222
Regularexpression"(( d{3,4})|d{3,4}-)?d{7,8}(-d{3})*"
China Postal Code Verification
Matching format is such as: 215421
RegularExpression "d{6}"
E-mail verification
Matching form such as: justali@justdn.com
RegularExpression "w+([- +.]w+)*@w+([-.]w+)*.w+([-.]w+)*"
ID card verification
Matching format such as: 15-digit or 18-digit ID card
RegularExpression "d{18}|d{15}"
Commonly used number verification
RegularExpression
"d{n}" n is the rule Length
"d{n,m}" Length range from n to m
Illegal character verification
Match illegal characters such as: & / ' |
Regular Expression [^&/|'\]+
Date verification
Matching form such as: 20030718,030718
Range: 1900--2099
RegularExpression Formula ((((19){1}|(20){1})d{2})|d{2})[01]{1}d{1}[0-3]{1}d{1 }
Matching domestic phone numbers:\d{3}-\d{8}|\d{4}-\d{7}
Comment: Matching format such as 0511-4405222 or 021-87888822
Matches Tencent QQ number: [1-9][0-9]{4,}
Comment: Tencent QQ number starts from 10000
Matches Chinese postal code: [1-9]\d{5 }(?!\d)
Comment: China’s postal code is 6 digits
Matching ID card: \d{15}|\d{18}
Comment: China’s ID card is 15 digits or 18 bits
Match ip address: \d+\.\d+\.\d+\.\d+
Comment: Useful when extracting ip address
Extract ip address in information:
(\d+) \.(\d+)\.(\d+)\.(\d+)
Extracting the Chinese mobile phone number in the information:
(86)*0*13\d{9}
Extracting the information Chinese landline phone number:
(\(\d{3,4}\)|\d{3,4}-|\s)?\d{8}
Extract the Chinese phone number in the information (Including mobile and landline phones):
(\(\d{3,4}\)|\d{3,4}-|\s)?\d{7,14}
Extracting information China postal code:
[1-9]{1}(\d+){5}
Extract the Chinese ID number in the information:
\d{18}|\d{15}
Extract integers in the information:
\d+
Extract floating point numbers (i.e. decimals) in the information:
(-?\d*)\.?\d+
Extract any in the information Numbers:
(-?\d*)(\.\d+)?
Extract Chinese strings in the information:
[\u4e00-\u9fa5]*
Extract double characters in the information Section string (Chinese characters):
[^\x00-\xff]*
Extract the English string in the information:
\w*
Extract the network link in the information:
( h|H)(r|R)(e|E)(f|F) *= *('|")?(\w|\\|\/|\.)+('|"| *|> ;)?
Extract the email address in the message:
\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\ w+)*
Extract the picture link in the information:
(s|S)(r|R)(c|C) *= *('|")?(\w|\\|\/| \.)+('|"| *|>)?
Match specific numbers:
^[1-9]\d*$ //匹配正整数 ^-[1-9]\d*$ //匹配负整数 ^-?[1-9]\d*$ //匹配整数 ^[1-9]\d*|0$ //匹配非负整数(正整数 + 0) ^-[1-9]\d*|0$ //匹配非正整数(负整数 + 0) ^[1-9]\d*\.\d*|0\.\d*[1-9]\d*$ //匹配正浮点数 ^-([1-9]\d*\.\d*|0\.\d*[1-9]\d*)$ //匹配负浮点数 ^-?([1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0)$ //匹配浮点数 ^[1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0$ //匹配非负浮点数(正浮点数 + 0) ^(-([1-9]\d*\.\d*|0\.\d*[1-9]\d*))|0?\.0+|0$ //匹配非正浮点数(负浮点数 + 0)
Related recommendations:
Summary of the basic syntax of js regular expressions
Regular expression functions in PHP、
PHP regular expression sharing
The above is the detailed content of Sharing of commonly used regular expressions in js. For more information, please follow other related articles on the PHP Chinese website!

JavaScript is widely used in websites, mobile applications, desktop applications and server-side programming. 1) In website development, JavaScript operates DOM together with HTML and CSS to achieve dynamic effects and supports frameworks such as jQuery and React. 2) Through ReactNative and Ionic, JavaScript is used to develop cross-platform mobile applications. 3) The Electron framework enables JavaScript to build desktop applications. 4) Node.js allows JavaScript to run on the server side and supports high concurrent requests.

Python is more suitable for data science and automation, while JavaScript is more suitable for front-end and full-stack development. 1. Python performs well in data science and machine learning, using libraries such as NumPy and Pandas for data processing and modeling. 2. Python is concise and efficient in automation and scripting. 3. JavaScript is indispensable in front-end development and is used to build dynamic web pages and single-page applications. 4. JavaScript plays a role in back-end development through Node.js and supports full-stack development.

C and C play a vital role in the JavaScript engine, mainly used to implement interpreters and JIT compilers. 1) C is used to parse JavaScript source code and generate an abstract syntax tree. 2) C is responsible for generating and executing bytecode. 3) C implements the JIT compiler, optimizes and compiles hot-spot code at runtime, and significantly improves the execution efficiency of JavaScript.

JavaScript's application in the real world includes front-end and back-end development. 1) Display front-end applications by building a TODO list application, involving DOM operations and event processing. 2) Build RESTfulAPI through Node.js and Express to demonstrate back-end applications.

The main uses of JavaScript in web development include client interaction, form verification and asynchronous communication. 1) Dynamic content update and user interaction through DOM operations; 2) Client verification is carried out before the user submits data to improve the user experience; 3) Refreshless communication with the server is achieved through AJAX technology.

Understanding how JavaScript engine works internally is important to developers because it helps write more efficient code and understand performance bottlenecks and optimization strategies. 1) The engine's workflow includes three stages: parsing, compiling and execution; 2) During the execution process, the engine will perform dynamic optimization, such as inline cache and hidden classes; 3) Best practices include avoiding global variables, optimizing loops, using const and lets, and avoiding excessive use of closures.

Python is more suitable for beginners, with a smooth learning curve and concise syntax; JavaScript is suitable for front-end development, with a steep learning curve and flexible syntax. 1. Python syntax is intuitive and suitable for data science and back-end development. 2. JavaScript is flexible and widely used in front-end and server-side programming.

Python and JavaScript have their own advantages and disadvantages in terms of community, libraries and resources. 1) The Python community is friendly and suitable for beginners, but the front-end development resources are not as rich as JavaScript. 2) Python is powerful in data science and machine learning libraries, while JavaScript is better in front-end development libraries and frameworks. 3) Both have rich learning resources, but Python is suitable for starting with official documents, while JavaScript is better with MDNWebDocs. The choice should be based on project needs and personal interests.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Zend Studio 13.0.1
Powerful PHP integrated development environment

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.