Table of Contents
A preliminary exploration of regular expressions in PHP (1) Basics
Home Backend Development PHP Tutorial A preliminary exploration of regular expressions in PHP (1) Basics_PHP Tutorial

A preliminary exploration of regular expressions in PHP (1) Basics_PHP Tutorial

Jul 13, 2016 am 09:55 AM
Base regular expression

A preliminary exploration of regular expressions in PHP (1) Basics

Regular expressions are a difficult part for PHP beginners to face. Over time, they tend to forget the functions of various symbols. But after a systematic summary, you will find that the difficulty of memorization is not very difficult.

Perl is a common compatible regular expression function, the general form is (preg_), which is what this article mainly introduces.

Learning regular rules is nothing more than learning 1. Writing patterns
2. Regular function = powerful character processing function.


Let’s cover the basics first.
1. Atom, as you can tell from the name, is the smallest unit of a string. It includes two types:
① Printable characters are characters that generally have no special meaning.
②Unprintable characters, representative range:
d: represents any decimal number
D: represents any character other than a number
s: represents any blank character
S: represents any non-whitespace character
w:a-zA-Z0-9
W: Any character except a-zA-Z0-9
(Tips: These are usually the only ones. It’s easy to remember. Just remember that each one has its English abbreviation (d stands for digital, s stands for word, and s stands for space. The meaning is also very clear), and the capital letters are always Will fight with lower case)

2. Customized atom table ([])
[]Character class, matches any one of the atoms, a square bracket matches only one character
The opposite [^] excludes characters and excludes any character in square brackets
[-] represents a certain range, for example: [a-z] represents any character from a to z


Learn more about some common characters.

1. Delimiter (a symbol that makes sure it is a regular string rather than an ordinary string) (| / ...)
Definition: Any symbol other than letters, numbers, and forward slashes is a delimiter symbol. Generally, a backslash (/) is used to represent
Shape like: /tm/
2. Period character (.)
Can match any character except newline character.
A question that can explain this effect well is to write several words starting with s and ending with t.
/^s**t$/ /^s*t/ ……
3. Qualifier (?* {n,m})
? : Matches the previous character 0 or 1 times
: Matches the previous character 1 or more times
* : Matches the previous character 0 or more times
{n}: Match the previous character n times
{n,}: Match the previous character at least n times
{n,m}: Match the previous character at least n times and at most m times
4. Select the character (|)
For example: /cat|dog/ matches cat or dog
5. Bracket characters (())
() has many functions, including new functions produced when used together with functions
1. Increase priority
2. Used as a large atom
3. Used as the sub-mode (1 takes the first sub-mode, 2 takes the second mode...)
"\1" '1'

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/990600.htmlTechArticlePreliminary exploration of regular expressions in PHP (1) Basics Regular expressions are more difficult for PHP beginners to face As time goes by, the functions of various symbols are often forgotten. But after...
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)

How to replace a string starting with something with php regular expression How to replace a string starting with something with php regular expression Mar 24, 2023 pm 02:57 PM

PHP regular expressions are a powerful tool for text processing and conversion. It can effectively manage text information by parsing text content and replacing or intercepting it according to specific patterns. Among them, a common application of regular expressions is to replace strings starting with specific characters. We will explain this as follows

How to match multiple words or strings using Golang regular expression? How to match multiple words or strings using Golang regular expression? May 31, 2024 am 10:32 AM

Golang regular expressions use the pipe character | to match multiple words or strings, separating each option as a logical OR expression. For example: matches "fox" or "dog": fox|dog matches "quick", "brown" or "lazy": (quick|brown|lazy) matches "Go", "Python" or "Java": Go|Python |Java matches words or 4-digit zip codes: ([a-zA

PHP Basics Tutorial: From Beginner to Master PHP Basics Tutorial: From Beginner to Master Jun 18, 2023 am 09:43 AM

PHP is a widely used open source server-side scripting language that can handle all tasks in web development. PHP is widely used in web development, especially for its excellent performance in dynamic data processing, so it is loved and used by many developers. In this article, we will explain the basics of PHP step by step to help beginners from getting started to becoming proficient. 1. Basic syntax PHP is an interpreted language whose code is similar to HTML, CSS and JavaScript. Every PHP statement ends with a semicolon; Note

How to use regular expressions to remove Chinese characters in php How to use regular expressions to remove Chinese characters in php Mar 03, 2023 am 10:12 AM

How to remove Chinese in PHP using regular expressions: 1. Create a PHP sample file; 2. Define a string containing Chinese and English; 3. Use "preg_replace('/([\x80-\xff]*)/i', '',$a);" The regular method can remove Chinese characters from the query results.

How to use regular matching to remove html tags in php How to use regular matching to remove html tags in php Mar 21, 2023 pm 05:17 PM

In this article, we will learn how to remove HTML tags and extract plain text content from HTML strings using PHP regular expressions. To demonstrate how to remove HTML tags, let's first define a string containing HTML tags.

Sharing tips on using PHP regular expressions to implement Chinese replacement function Sharing tips on using PHP regular expressions to implement Chinese replacement function Mar 24, 2024 pm 05:57 PM

Sharing tips on using PHP regular expressions to implement the Chinese replacement function. In web development, we often encounter situations where Chinese content needs to be replaced. As a popular server-side scripting language, PHP provides powerful regular expression functions, which can easily realize Chinese replacement. This article will share some techniques for using regular expressions to implement Chinese substitution in PHP, and provide specific code examples. 1. Use the preg_replace function to implement Chinese replacement. The preg_replace function in PHP can be used

How to solve Python expression syntax errors? How to solve Python expression syntax errors? Jun 24, 2023 pm 05:04 PM

Python, as a high-level programming language, is easy to learn and use. Once you need to write a Python program, you will inevitably encounter syntax errors, and expression syntax errors are a common one. In this article, we will discuss how to resolve expression syntax errors in Python. Expression syntax errors are one of the most common errors in Python, and they are usually caused by incorrect usage of syntax or missing necessary components. In Python, expressions usually consist of numbers, strings, variables, and operators. most common

Learn the basics of Go language variables Learn the basics of Go language variables Mar 22, 2024 pm 09:39 PM

Go language is a statically typed, compiled language developed by Google. Its concise and efficient features have attracted widespread attention and love from developers. In the process of learning the Go language, mastering the basic knowledge of variables is a crucial step. This article will explain basic knowledge such as the definition, assignment, and type inference of variables in the Go language through specific code examples to help readers better understand and master these knowledge points. In the Go language, you can use the keyword var to define a variable, which is the format of the var variable name variable type.

See all articles