php随记三
php随记3
<?php #正则表达式 #就是一种描述字符串结构的语法规则 #是一个特定的格式化模式 #1. 行定位符 /* 1) ^行首 2)$行尾 tm eqaul Tomorrow Moon ^tm 匹配 tm$不匹配 tm屁匹配任意位置 */ #2. 单词界定符 /* 1)b \btm\b表示要查找一个完整的单词 2)B \Btm|b正好相反 表示查找的不是一个完整的单词 */ #3. 字符类 /* 1)正则表达式是区分大小写的如果要想忽略大小写可以使用[] 但是一个[]只能包含一个字符 例如tm的匹配要写成[tT][mM] 2)POSIX预定义的字符类 [:digit:] [0-9] [[:alnum:]] 字母数字集合 [[:alpha:]] 字母集合 [[:blank:]] 空格 水平制表 [[:xdigit:]] 十六进制数字 [[:punct:]] 特殊字符 !@#$%^&*? [[:print:]] 所有可打印字符(包括空白字符) [[:space:]] 空包字符 空格 换行 换页 回车 水平制表 [[:graph:]] 所有可打印字符(不包括空白字符) [[:upper:]] 大写字母 [[:lower:]] 小写字母 [[:cntrl:]] 控制字符 */ #4 选择字符 | /* 可以理解为或的意思 */ #5 连接字符 _ /* [a,b,d...,z] ==> [a-z] */ # 排除字符 [^] # [^a-zA-Z] 除了字符以外的 #6 限定符 (?*+{n,m}) /* ? 匹配前面的字符零次或者一次 colo?r可以匹配colour color + 匹配前面的字符一次或多次 go+gle可以匹配google到go...ogle * 匹配前面的字符零次或多次 go*gle可以匹配ggle到go...ogle {n} 匹配前面的字符n次 {n,} 匹配前面的字符至少n次 {n,m} 匹配前面的字符至少n次 至多m次 */ #7 点号字符 /* 能够表示出了换行符以外的任意一个字符 比如匹配首字母是S尾字母是T的三个字母的单词 ^s.t$ */ #8 转义字符 /* 同c java中的一致 */ #9 反斜线(\) /* 反斜线定义了一些不可显示 比如 \b 退格键 \n换行等等 */ #10 小括号 /* 改变限定符的作用域 */ #11 反向引用 /* 反向引用就是一考表达式的记忆功能匹配连续出现的字符串或字母 如匹配连续两个it 首先将单词it作为分组 然后在后面加上"\1"即可 格式为: (it)\1 //其中这个1代表的分组的序号 因为可能有多个分组 */ #12 模式修饰符 /* i 忽略大小写 m 多文本形式 字串中含有多个换行符 影响^$的匹配 s 单文本形式 .可以匹配$^ x 忽略空白字符 修饰符有三种格式:(?i)tm(?-i),(?i:tm),/tm/i */ #php中POSIX扩展正则表达式函数 /* bool erge/eregi(string pattern, string string[, array regs]) 在string中查找pattern,如果存在第三个参数,则会将匹配的字串划分 存到数组中去 第一个区分大小写 第二个不区分 */ /* bool ereg_replace/eregi_replace(string pattern, string replacement, string string) 在字符串string中匹配pattern,如果成果使用replacement替换 并且返回替换后的string 第一个区分大小写 第二种不 */ /* array split/split(string pattern, string string[, int limit]) 使用pattern分割字符串string 存在参数limit的话就是限制分割的个数 */ #PCER兼容正则表达式函数 /* array preg_grep(string pattern, array input)函数 使用input一一匹配表达式pattern 最后返回所有 由所有匹配成功的元素组成的数组 */ $input = array('helloJimbo','nihaoaJinbo'); $pattern = '/J...o/'; $arr = preg_grep($pattern, $input); //echo sizeof($arr); for($i = 0; $i "; } /* int preg_match/preg_match_all(string pattern, string subject[, array matches]) 在字符串subject中匹配表达式pattern 函数返回匹配次数,如果有matches, */ /* string preg_quote(string str[, string delimiter]) 将str里面的所有特殊字符自动转义 如果有delimiter参数 则delimiter里面的字符也被转义 */ /* preg_replace(mixed pattern, mixed replacement, mixed subject[, int limit]) 在subject中匹配pattern,匹配到替换成replacement,有limit限制次数 preg_replace_callback(mixed pattern, callback callback, mixed subject[, int limit]) 功能相同 只不过replacement换成回调函数 可以更灵活 */ /* array preg_split(string pattern, string subject[, int limit]) 分割字符串 */?>

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

Convert basic data types to strings using Java's String.valueOf() function In Java development, when we need to convert basic data types to strings, a common method is to use the valueOf() function of the String class. This function can accept parameters of basic data types and return the corresponding string representation. In this article, we will explore how to use the String.valueOf() function for basic data type conversions and provide some code examples to

Method of converting char array to string: It can be achieved by assignment. Use {char a[]=" abc d\0efg ";string s=a;} syntax to let the char array directly assign a value to string, and execute the code to complete the conversion.

Hello everyone, today I will share with you the basic knowledge of Java: String. Needless to say the importance of the String class, it can be said to be the most used class in our back-end development, so it is necessary to talk about it.

Replace characters (strings) in a string using Java's String.replace() function In Java, strings are immutable objects, which means that once a string object is created, its value cannot be modified. However, you may encounter situations where you need to replace certain characters or strings in a string. At this time, we can use the replace() method in Java's String class to implement string replacement. The replace() method of String class has two types:

Use Java's String.length() function to get the length of a string. In Java programming, string is a very common data type. We often need to get the length of a string, that is, the number of characters in the string. In Java, we can use the length() function of the String class to get the length of a string. Here is a simple example code: publicclassStringLengthExample{publ

1. Understanding String1. String in JDK First, let’s take a look at the source code of the String class in the JDK. It implements many interfaces. You can see that the String class is modified by final. This means that the String class cannot be inherited and there is no subclass of String. class, so that all people using JDK use the same String class. If String is allowed to be inherited, everyone can extend String. Everyone uses different versions of String, and two different people Using the same method shows different results, which makes it impossible to develop the code. Inheritance and method overriding not only bring flexibility, but also cause many subclasses to behave differently.

Title: Example of using the Array.Sort function to sort an array in C# Text: In C#, array is a commonly used data structure, and it is often necessary to sort the array. C# provides the Array class, which has the Sort method to conveniently sort arrays. This article will demonstrate how to use the Array.Sort function in C# to sort an array and provide specific code examples. First, we need to understand the basic usage of the Array.Sort function. Array.So

The split method in String uses the split() method of String to split the String according to the incoming characters or strings and return the split array. 1. General usage When using general characters, such as @ or, as separators: Stringaddress="Shanghai@Shanghai City@Minhang District@Wuzhong Road";String[]splitAddr=address.split("@");System .out.println(splitAddr[0]+splitAddr[1]+splitAddr[2]+splitAddr[3
