search
HomeBackend DevelopmentPHP TutorialSummary of commonly used PHP regular expressions, php regular expressions_PHP tutorial

A summary of commonly used PHP regular expressions, php regular expressions

A collection of commonly used regular expressions in PHP:

Regular expressions that match Chinese characters: [u4e00-u9fa5]

Comment: Matching Chinese characters is really a headache. With this expression, it is easy to handle.

Matches double-byte characters (including Chinese characters): [ ^x00-xff]

Comment: Can be used to calculate the length of a string (the length of a double-byte character counts as 2, and the ASCII character counts as 1)

Regular expression to match blank lines: ns*r

Comment: Can be used to delete blank lines

Regular expression matching HTML tags: ]*>.*?< ;/1>|<.>

Comment: The version circulating on the Internet is too bad. The above one can only match part of it, and it is still powerless for complex nested tags

Regular expression to match leading and trailing blank characters: ^s*|s*$

Comment: Can be used to delete blank characters at the beginning and end of a line (including spaces, tabs, form feeds, etc.), Very useful expression

Regular expression for matching email addresses: w+([-+.]w+)*@w+([-.]w+)*.w+([-.]w+)*

Comment: Very useful for form validation

Regular expression to match URL: [a-zA-z]+://[^s]*

Comment: The version circulating on the Internet has very limited functions. The above one can basically meet the needs

Whether the matching account is legal (starting with a letter, 5-16 bytes are allowed, alphanumeric underscores are allowed): ^[a-zA-Z][ a-zA-Z0-9_]{4,15}$

Comment: Very practical for form verification

Matching domestic phone numbers: d{3}-d{8}|d{ 4}-d{7}

Comment: Matching format such as 0511-4405222 or 021-87888822

Matching Tencent QQ number: [1-9][0-9]{4,}

Comment: Tencent QQ account starts from 10000

Matching Chinese postal code: [1-9]d{5}(?!d)

Comment: Chinese postal code It is a 6-digit number

Matching ID card: d{15}|d{18}

Comment: China’s ID card is 15 or 18 digits

Matching IP address :d+.d+.d+.d+

Comment: Useful when extracting IP address

Match specific numbers:

^[1-9]d*$ // Match positive Integer

        ^-[1-9]d*$                                                                                                                      [1-9]d*|0$ // Match non-negative integers (positive integers + 0)

^-[1-9]d*|0$ // Match non-positive integers (negative integers + 0)

^[1-9]d*.d*|0.d*[1-9]d*$  ​​// Match positive floating point numbers

^-([1- 9]d*.d*|0.d*[1-9]d*)$ // Match negative floating point number

^-?([1-9]d*.d*|0. d*[1-9]d*|0?.0+|0)$ // Match floating point number

^[1-9]d*.d*|0.d*[1-9 ]d*|0?.0+|0$ // Match non-negative floating point numbers (positive floating point numbers + 0)

^(-([1-9]d*.d*|0.d *[1-9]d*))|0?.0+|0$ // Match non-positive floating point numbers (negative floating point numbers + 0)

Comments: Useful when processing large amounts of data, specific applications Note the correction

Match specific string:

^[A-Za-z]+$ // Match a string consisting of 26 English letters

^[A-Z ]+$  // Matches a string consisting of 26 uppercase English letters

^[a-z]+$  // Matches a string consisting of 26 lowercase English letters

^ [A-Za-z0-9]+$  // Matches a string consisting of numbers and 26 English letters

^w+$  // Matches a string consisting of numbers, 26 English letters or underscores



http://www.bkjia.com/PHPjc/947049.html

www.bkjia.com

http: //www.bkjia.com/PHPjc/947049.htmlTechArticleA summary of commonly used PHP regular expressions, php regular expressions A collection of commonly used regular expressions in PHP: Matching Chinese characters Regular expression: [u4e00-u9fa5] Comment: Matching Chinese is really a...
Statement
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
Optimize PHP Code: Reducing Memory Usage & Execution TimeOptimize PHP Code: Reducing Memory Usage & Execution TimeMay 10, 2025 am 12:04 AM

TooptimizePHPcodeforreducedmemoryusageandexecutiontime,followthesesteps:1)Usereferencesinsteadofcopyinglargedatastructurestoreducememoryconsumption.2)LeveragePHP'sbuilt-infunctionslikearray_mapforfasterexecution.3)Implementcachingmechanisms,suchasAPC

PHP Email: Step-by-Step Sending GuidePHP Email: Step-by-Step Sending GuideMay 09, 2025 am 12:14 AM

PHPisusedforsendingemailsduetoitsintegrationwithservermailservicesandexternalSMTPproviders,automatingnotificationsandmarketingcampaigns.1)SetupyourPHPenvironmentwithawebserverandPHP,ensuringthemailfunctionisenabled.2)UseabasicscriptwithPHP'smailfunct

How to Send Email via PHP: Examples & CodeHow to Send Email via PHP: Examples & CodeMay 09, 2025 am 12:13 AM

The best way to send emails is to use the PHPMailer library. 1) Using the mail() function is simple but unreliable, which may cause emails to enter spam or cannot be delivered. 2) PHPMailer provides better control and reliability, and supports HTML mail, attachments and SMTP authentication. 3) Make sure SMTP settings are configured correctly and encryption (such as STARTTLS or SSL/TLS) is used to enhance security. 4) For large amounts of emails, consider using a mail queue system to optimize performance.

Advanced PHP Email: Custom Headers & FeaturesAdvanced PHP Email: Custom Headers & FeaturesMay 09, 2025 am 12:13 AM

CustomheadersandadvancedfeaturesinPHPemailenhancefunctionalityandreliability.1)Customheadersaddmetadatafortrackingandcategorization.2)HTMLemailsallowformattingandinteractivity.3)AttachmentscanbesentusinglibrarieslikePHPMailer.4)SMTPauthenticationimpr

Guide to Sending Emails with PHP & SMTPGuide to Sending Emails with PHP & SMTPMay 09, 2025 am 12:06 AM

Sending mail using PHP and SMTP can be achieved through the PHPMailer library. 1) Install and configure PHPMailer, 2) Set SMTP server details, 3) Define the email content, 4) Send emails and handle errors. Use this method to ensure the reliability and security of emails.

What is the best way to send an email using PHP?What is the best way to send an email using PHP?May 08, 2025 am 12:21 AM

ThebestapproachforsendingemailsinPHPisusingthePHPMailerlibraryduetoitsreliability,featurerichness,andeaseofuse.PHPMailersupportsSMTP,providesdetailederrorhandling,allowssendingHTMLandplaintextemails,supportsattachments,andenhancessecurity.Foroptimalu

Best Practices for Dependency Injection in PHPBest Practices for Dependency Injection in PHPMay 08, 2025 am 12:21 AM

The reason for using Dependency Injection (DI) is that it promotes loose coupling, testability, and maintainability of the code. 1) Use constructor to inject dependencies, 2) Avoid using service locators, 3) Use dependency injection containers to manage dependencies, 4) Improve testability through injecting dependencies, 5) Avoid over-injection dependencies, 6) Consider the impact of DI on performance.

PHP performance tuning tips and tricksPHP performance tuning tips and tricksMay 08, 2025 am 12:20 AM

PHPperformancetuningiscrucialbecauseitenhancesspeedandefficiency,whicharevitalforwebapplications.1)CachingwithAPCureducesdatabaseloadandimprovesresponsetimes.2)Optimizingdatabasequeriesbyselectingnecessarycolumnsandusingindexingspeedsupdataretrieval.

See all articles

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

Video Face Swap

Video Face Swap

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

Hot Tools

SecLists

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.

mPDF

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),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool