php中的字符串和正则表达式,php正则表达式
php中的字符串和正则表达式,php正则表达式
一、字符串类型的特点
1、PHP是弱类型语言,其他数据类型一般都可以直接应用于字符串函数操作。
1://输出345
//输出345
//先查找hello常量,若没找到,将hello看做字符串使用
2、字符串可以作为“数组”,是字符的集合。
1:
<span id="lnum3"> 3:</span><span> <span>echo</span> $str[0];</span>
<span id="lnum5"> 5:</span><span> <span>echo</span> $str[2];</span>
但是字符串不是真的数组,不能使用数组的函数.如count($str)不会返回字符串长度。PHP引擎无法区分字符和数组,产生二义性。自PHP4起,已经用花括号替代方括号。
1:
<span id="lnum3"> 3:</span><span> $str = <span>"www.ido321.com"</span>;</span>
<span id="lnum5"> 5:</span><span> <span>echo</span> $str{1};</span>
<span id="lnum7"> 7:</span><span> ?></span>
3、双引号变量解析
在PHP中,当用双引号或者定界符定义字符串时,其中的变量会被解析。
1:"dwqs",<span>'add'</span> => <span>"www.ido321.com"</span>);
//可以解析,但是在方括号中不能使用引号
<span id="lnum5"> 5:</span><span> <span>echo</span> <span>"{$arr['name']}"</span>; <span>//可以解析,用花括号包含元素,name不带引号也是可以的</span></span>
<span id="lnum7"> 7:</span><span> <span>//假设存在对象$square</span></span>
; <span>//可以解析</span>
; <span>//不可以解析,用花括号解决</span>
; <span>//可以解析</span>
二、字符串输出函数
<span></span>
三、常用的字符串格式函数
<span></span>
PS:PHP的字符串处理函数大部分不对源字符串做修改,而是返回新的字符串
四、正则表达式
正则表达式描述了一种字符串匹配的模式,通过这个模式在特定的函数中对字符串进行匹配、查找、替换和分隔等操作,由原子、元字符和模式修正符三部分组成的文字模式。
在PHP中,有两套正则的处理函数库:PCRE和POSIX。前者以preg_前缀命名,与Perl兼容;后者以ereg_前缀命名。二者功能相似,但PCRE的效率略高。
与Perl语言兼容的正则表达式处理函数:
<span></span>
1、语法
1.1 定界符:在与Perl兼容的正则函数中使用模式时,必须给模式加上定界符。除了字母、数字和反斜线(\)之外的任何字符都可以作为定界符号
1:<span id="lnum3"> 3:</span><span> <span>echo</span> $m1 = <span>'/<\/\w+/'</span>;</span>
<span id="lnum5"> 5:</span><span> <span>echo</span> $m3 = <span>'!^(?i)php[34]!'</span>;</span>
<span id="lnum7"> 7:</span><span> ?></span>
1.2 原子:原子包含了普通字符,如字母、数字;非打印字符,如空格、回车;特殊字符和元字符,如引号、*、+等,必须用”\”进行转义;自定义原子表,如[apj]、[a-z];通用字符类型,如\d、\D。
1:<span id="lnum3"> 3:</span><span> $mail1 = <span>'/^[0-9a-zA-Z]+@[0-9a-zA-Z]+(\.[0-9a-zA-Z]+){0,3}$/'</span>;</span>
<span id="lnum5"> 5:</span><span> ?></span>
1.3 元字符:用于构建正则表达式的具有特殊含义的字符。Perl可以使用各种元字符来搜索匹配,如*、+、?.常见的元字符如下
<span></span>
1.4 模式修正符:在正则的定界符之外使用,扩展正则在匹配、替换等方面的功能。
<span></span>
2.与Perl兼容的正则表达式函数
2.1 preg_match(string pattern,string subject[,array matches]):用于对字符串的查找和匹配。参数说明:
pattern是正则,subject是需要处理的字符串,可选的matches用于保存于pattern的各个子模式的匹配结果,matches[0] 保存了与pattern匹配的整体内容,matches[1]保存了pattern中第一个小括号中匹配的内容,以此类推。
1:);
<span id="lnum4"> 4:</span><span> $subject = <span>"我的博客:http://www.ido321.com"</span>;</span>
<span id="lnum6"> 6:</span><span> <span>echo</span> <span>"搜索的URL是:"</span>.$matches[0].<span>"<br/>"</span>; <span>//数组第1个元素保存整个匹配结果</span></span>
;<span>//数组第2个元素保存第1个字表达式</span>
;<span>//数组第3个元素保存第2个字表达式</span>
;<span>//数组第4个元素保存第3个字表达式</span>
;<span>//数组第5个元素保存第4个字表达式</span>
<span id="lnum12"> 12:</span><span> ?></span>
结果
<span></span>
preg_match_all()与preg_match()函数类似,不同的是前者会一直匹配到字符串末尾,后者在第一次匹配后就停止匹配。
2.2 preg_grep(string pattern,array iput):匹配数组中的元素,返回与正则匹配的数组单元。参数说明:
pattern是正则,input是需要匹配的数组。
1:<span id="lnum3"> 3:</span><span> $version = preg_grep(<span>'/^[a-zA-Z]+(\d|\.)+$/'</span>,$arr);</span>
<span id="lnum5"> 5:</span><span> <span>//输出:Array([1]=>Apache2.2.9 [2]=>MySQL5.0.51 [3]=>PHP5.2.6)</span></span>
<span id="lnum7"> 7:</span><span> ?></span>
2.3 preg_replace(mixed pattern,mixed replacement,mixed subject[,int limit]):字符串替换。说明:
该函数会在subject中搜索与pattern的匹配项,并用replacement替换。limit用于限制匹配的次数,即替换的次数。
1:<span id="lnum3"> 3:</span><span> $text = <span>'这个文本有<b>粗体</b>和<u>带有下划线</u>以及<i>斜体</i>'</span>;</span>
//将所有HTML标记替换为空
//值替换前2个HTML标记
2.4 preg_split(string pattern,string subject[,int limit[,int flags]]):对字符串进行分割。说明:
函数返回一个数组。数组元素包含subject中与pattern匹配作为边界所分割的字符串,limit含义见2.3,flags含义请参考文档。
<span id="lnum2"> 2:</span><span> <span>//按任数量的空格分割字符串</span></span>
<span id="lnum4"> 4:</span><span> </span>
<span id="lnum6"> 6:</span><span> print_r($kerwords);</span>
来源:http://www.ido321.com/612.html
$text = '
。。。。。。
test';
preg_match_all('/print_r($m);
$s="soproxy.appspot.com/...opular";
preg_match('/v=(.*?)&/',$s,$matched);
echo($matched[1]);

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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Detailed explanation of the method of converting int type to string in PHP In PHP development, we often encounter the need to convert int type to string type. This conversion can be achieved in a variety of ways. This article will introduce several common methods in detail, with specific code examples to help readers better understand. 1. Use PHP’s built-in function strval(). PHP provides a built-in function strval() that can convert variables of different types into string types. When we need to convert int type to string type,

How to check if a string starts with a specific character in Golang? When programming in Golang, you often encounter situations where you need to check whether a string begins with a specific character. To meet this requirement, we can use the functions provided by the strings package in Golang to achieve this. Next, we will introduce in detail how to use Golang to check whether a string starts with a specific character, with specific code examples. In Golang, we can use HasPrefix from the strings package

Title: How to determine whether a string ends with a specific character in Golang. In the Go language, sometimes we need to determine whether a string ends with a specific character. This is very common when processing strings. This article will introduce how to use the Go language to implement this function, and provide code examples for your reference. First, let's take a look at how to determine whether a string ends with a specified character in Golang. The characters in a string in Golang can be obtained through indexing, and the length of the string can be

1. First open pycharm and enter the pycharm homepage. 2. Then create a new python script, right-click - click new - click pythonfile. 3. Enter a string, code: s="-". 4. Then you need to repeat the symbols in the string 20 times, code: s1=s*20. 5. Enter the print output code, code: print(s1). 6. Finally run the script and you will see our return value at the bottom: - repeated 20 times.

Methods to solve Chinese garbled characters when converting hexadecimal strings in PHP. In PHP programming, sometimes we encounter situations where we need to convert strings represented by hexadecimal into normal Chinese characters. However, in the process of this conversion, sometimes you will encounter the problem of Chinese garbled characters. This article will provide you with a method to solve the problem of Chinese garbled characters when converting hexadecimal to string in PHP, and give specific code examples. Use the hex2bin() function for hexadecimal conversion. PHP’s built-in hex2bin() function can convert 1

PHP String Matching Tips: Avoid Ambiguous Included Expressions In PHP development, string matching is a common task, usually used to find specific text content or to verify the format of input. However, sometimes we need to avoid using ambiguous inclusion expressions to ensure match accuracy. This article will introduce some techniques to avoid ambiguous inclusion expressions when doing string matching in PHP, and provide specific code examples. Use preg_match() function for exact matching In PHP, you can use preg_mat

PHP String Operation: A Practical Method to Effectively Remove Spaces In PHP development, you often encounter situations where you need to remove spaces from a string. Removing spaces can make the string cleaner and facilitate subsequent data processing and display. This article will introduce several effective and practical methods for removing spaces, and attach specific code examples. Method 1: Use the PHP built-in function trim(). The PHP built-in function trim() can remove spaces at both ends of the string (including spaces, tabs, newlines, etc.). It is very convenient and easy to use.

As a scripting language widely used to develop web applications, PHP has very powerful string processing functions. In daily development, we often encounter operations that require deleting a string, especially the last two characters of the string. This article will introduce two PHP techniques for deleting the last two characters of a string and provide specific code examples. Tip 1: Use the substr function The substr function in PHP is used to return a part of a string. We can easily remove characters by specifying the string and starting position
