1. Regular expressions are often used when building websites. Here are some explanations and examples for your reference and modification only:
2. "^d+$" //Non-negative integer (positive integer + 0)
3. "^[0-9]*[1-9][0-9]*$" //Positive integer
4. "^((-d+)|(0+))$" //Non-positive integer (negative integer + 0)
5. "^-[0-9]*[1-9][0-9]*$" //Negative integer
6. “^-?d+$” //Integer
7. "^d+(.d+)?$" //Non-negative floating point number (positive floating point number + 0)
8. "^(([0-9]+.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]* .[0-9]+)|([0-9]*[1-9][0-9]*))$" //Positive floating point number
9. "^((-d+(.d+)?)|(0+(.0+)?))$" //Non-positive floating point number (negative floating point number + 0)
10. "^(-(([0-9]+.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9 ]*.[0-9]+)|([0-9]*[1-9][0-9]*)))$" //Negative floating point number
11. "^(-?d+)(.d+)?$" //Floating point number
12. "^[A-Za-z]+$" //A string consisting of 26 English letters
13. "^[A-Z]+$" //A string consisting of 26 uppercase English letters
14. "^[a-z]+$" //A string consisting of 26 lowercase English letters
15. "^[A-Za-z0-9]+$" // A string consisting of numbers and 26 English letters
16. "^w+$" //A string consisting of numbers, 26 English letters or underscores
17. "^[w-]+(.[w-]+)*@[w-]+(.[w-]+)+$" //email address
18. "^[a-zA-z]+://(w+(-w+)*)(.(w+(-w+)*))*(?S*)?$" //url
19. /^(d{2}|d{4})-((0([1-9]{1}))|(1[1|2]))-(([0-2]([ 1-9]{1}))|(3[0|1]))$/ // Year-month-day
20. /^((0([1-9]{1}))|(1[1|2]))/(([0-2]([1-9]{1}))|(3 [0|1]))/(d{2}|d{4})$/ // month/day/year
21. "^([w-.]+)@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.) |(([w-]+.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(]?)$" //Emil
22. /^((+?[0-9]{2,4}-[0-9]{3,4}-)|([0-9]{3,4}-))?([0 -9]{7,8})(-[0-9]+)?$/ //Phone number
23. "^(d{1,2}|1dd|2[0-4]d|25[0-5]).(d{1,2}|1dd|2[0-4]d|25[ 0-5]).(d{1,2}|1dd|2[0-4]d|25[0-5]).(d{1,2}|1dd|2[0-4]d| 25[0-5])$" //IP address
24.
25. Regular expression to match Chinese characters: [u4e00-u9fa5]
26. Match double-byte characters (including Chinese characters): [^x00-xff]
27. Regular expression to match blank lines: n[s| ]*r
28. Regular expression to match HTML tags: /.*1>|/
29. Regular expression matching leading and trailing spaces: (^s*)|(s*$)
30. Regular expression to match email address: w+([-+.]w+)*@w+([-.]w+)*.w+([-.]w+)*
31. Regular expression to match URL: ^[a-zA-z]+://(\w+(-\w+)*)(\.(\w+(-\w+)*))*(\? \S*)?$
32. Whether the matching account is legal (starting with a letter, 5-16 bytes allowed, alphanumeric underscores allowed): ^[a-zA-Z][a-zA-Z0-9_]{4,15}$
33. Match domestic phone numbers: (d{3}-|d{4}-)?(d{8}|d{7})?
34. Matching Tencent QQ number: ^[1-9]*[1-9][0-9]*$
35.
36.
37. Metacharacters and their behavior in the context of regular expressions:
38.
39. Mark the next character as a special character, a literal character, a backreference, or an octal escape character.
40.
41. ^ matches the beginning of the input string. If the Multiline property of the RegExp object is set, ^ also matches the position after 'n' or 'r'.
42.
43. $ matches the end position of the input string. If the Multiline property of the RegExp object is set, $ also matches the position before 'n' or 'r'.
44.
45. * Matches the previous subexpression zero or more times.
46.
47. + Matches the previous subexpression one or more times. + is equivalent to {1,}.
48.
49. ? Match the previous subexpression zero or one time. ? Equivalent to {0,1}.
50.
51. {n} n is a non-negative integer that matches a certain number of n times.
52.
53. {n,} n is a non-negative integer that matches at least n times.
54.
55. {n,m} m and n are both non-negative integers, where n
56.
57. ? When the character immediately follows any other limiter (*, +, ?, {n}, {n,}, {n,m}), the matching pattern is non-greedy. Non-greedy mode matches as little of the searched string as possible, while the default greedy mode matches as much of the searched string as possible.
58.
59. . Matches any single character except "n". To match any character including 'n', use a pattern like '[.n]'.
60. (pattern) matches pattern and gets this match.
61.
62. (?:pattern) matches pattern but does not obtain the matching result, which means that this is a non-acquisition match and is not stored for later use.
63.
64. (?=pattern) Forward lookup, matches the search string at the beginning of any string that matches pattern. This is a non-fetch match, that is, the match does not need to be fetched for later use.
65.
66. (?!pattern) negative preview, opposite to (?=pattern)
67.
68. x|y matches x or y.
69.
70. [xyz] character set.
71.
72. [^xyz] Negative value character set.
73.
74. [a-z] character range, matches any character within the specified range.
75.
76. [^a-z] Negative character range, matches any character that is not within the specified range.
77.
78. b matches a word boundary, which refers to the position between a word and a space.
79.
80. B matches non-word boundaries.
81.
82. cx matches the control character specified by x.
83.
84. d matches a numeric character. Equivalent to [0-9].
85.
86. D matches a non-numeric character. Equivalent to [^0-9].
87.
88. f matches a form feed character. Equivalent to x0c and cL.
89.
90. n matches a newline character. Equivalent to x0a and cJ.
91.
92. r matches a carriage return character. Equivalent to x0d and cM.
93.
94. s matches any whitespace character, including spaces, tabs, form feeds, etc. Equivalent to [fnrtv].
95.
96. S matches any non-whitespace character. Equivalent to [^ fnrtv].
97.
98. t matches a tab character. Equivalent to x09 and cI.
99.
100. v matches a vertical tab character. Equivalent to x0b and cK.
101.
102. w matches any word character including an underscore. Equivalent to '[A-Za-z0-9_]'.
103.
104. W matches any non-word character. Equivalent to '[^A-Za-z0-9_]'.
105.
106. xn matches n, where n is the hexadecimal escape value. The hexadecimal escape value must be exactly two digits long.
107.
108. num matches num, where num is a positive integer. A reference to the match obtained.
109.
110. n identifies an octal escape value or a backreference. n is a backreference if n is preceded by at least n fetched subexpressions. Otherwise, if n is an octal number (0-7), then n is an octal escape value.
111.
112. nm identifies an octal escape value or a backreference. If nm is preceded by at least nm fetched subexpressions, nm is a backreference. If nm is preceded by at least n gets, then n is a backreference followed by the literal m. If neither of the previous conditions is true, and if n and m are both octal digits (0-7), nm will match the octal escape value nm.
113.
114. nml If n is an octal digit (0-3), and m and l are both octal digits (0-7), then matches the octal escape value nml.
115.
116. un matches n, where n is a Unicode character represented by four hexadecimal digits.
117.
118. Regular expression to match Chinese characters: [u4e00-u9fa5]
119.
120. Match double-byte characters (including Chinese characters): [^x00-xff]
121.
122. Regular expression to match blank lines: n[s| ]*r
123.
124. Regular expression to match HTML tags: /.*1>|/
125.
126. Regular expression matching leading and trailing spaces: (^s*)|(s*$)
127.
128. Regular expression to match email addresses: w+([-+.]w+)*@w+([-.]w+)*.w+([-.]w+)*
129.
130. Regular expression to match URL: http://([w-]+.)+[w-]+(/[w- ./?%&=]*)?
131.
132. Use regular expressions to limit the input content of text boxes in web forms:
133.
134. Use regular expressions to limit input to Chinese only: onkeyup="value=value.replace(/[^u4E00-u9FA5]/g,'')" onbeforepaste="clipboardData.setData('text',clipboardData.getData( 'text').replace(/[^u4E00-u9FA5]/g,''))"
135.
136. Use regular expressions to limit the input of only full-width characters: onkeyup="value=value.replace(/[^uFF00-uFFFF]/g,'')" onbeforepaste="clipboardData.setData('text',clipboardData.getData ('text').replace(/[^uFF00-uFFFF]/g,''))"
137.
138. Use regular expressions to limit input to numbers: onkeyup="value=value.replace(/[^d]/g,'') "onbeforepaste="clipboardData.setData('text',clipboardData.getData('text ').replace(/[^d]/g,''))"
139.
140. Use regular expressions to limit input to numbers and English only: onkeyup="value=value.replace(/[W]/g,'') "onbeforepaste="clipboardData.setData('text',clipboardData.getData(' text').replace(/[^d]/g,''))"
141.
142. =========Commonly used regular expressions
143.
144.
145.
146. Regular expression to match Chinese characters: [u4e00-u9fa5]
147.
148. Match double-byte characters (including Chinese characters): [^x00-xff]
149.
150. Regular expression to match blank lines: n[s| ]*r
151.
152. Regular expression to match HTML tags: /.*1>|/
153.
154. Regular expression matching leading and trailing spaces: (^s*)|(s*$)
155.
156. Regular expression to match IP address: /(d+).(d+).(d+).(d+)/g //
157.
158. Regular expression to match email address: w+([-+.]w+)*@w+([-.]w+)*.w+([-.]w+)*
159.
160. Regular expression to match URL: http://(/[w-]+.)+[w-]+(/[w- ./?%&=]*)?
161.
162. sql statement: ^(select|drop|delete|create|update|insert).*$
163.
164. 1. Non-negative integer: ^d+$
165.
166. 2. Positive integer: ^[0-9]*[1-9][0-9]*$
167.
168. 3. Non-positive integers: ^((-d+)|(0+))$
169.
170. 4. Negative integers: ^-[0-9]*[1-9][0-9]*$
171.
172. 5. Integer: ^-?d+$
173.
174. 6. Non-negative floating point number: ^d+(.d+)?$
175.
176. 7. 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]*))$
177.
178. 8. Non-positive floating point numbers: ^((-d+.d+)?)|(0+(.0+)?))$
179.
180. 9. Negative floating point number: ^(-((positive floating point number regular expression)))$
181.
182. 10. English string: ^[A-Za-z]+$
183.
184. 11. English capital string: ^[A-Z]+$
185.
186. 12. English lowercase string: ^[a-z]+$
187.
188. 13. English character and number string: ^[A-Za-z0-9]+$
189.
190. 14. Alphanumeric plus underline string: ^w+$
191.
192. 15. E-mail address: ^[w-]+(.[w-]+)*@[w-]+(.[w-]+)+$
193.
194. 16. URL: ^[a-zA-Z]+://(w+(-w+)*)(.(w+(-w+)*))*(?s*)?$
195. Or: ^http://[A-Za-z0-9]+.[A-Za-z0-9]+[/=?%-&_~`@[]':+!]*([ ^""])*$
196.
197. 17. Postal code: ^[1-9]d{5}$
198.
199. 18. Chinese: ^[u0391-uFFE5]+$
200.
201. 19. Phone number: ^(((d{2,3}))|(d{3}-))?((0d{2,3})|0d{2,3}-)?[1 -9]d{6,7}(-d{1,4})?$
202.
203. 20. Mobile phone number: ^(((d{2,3}))|(d{3}-))?13d{9}$
204.
205. 21. Double-byte characters (including Chinese characters): ^x00-xff
206.
207. 22. Match leading and trailing spaces: (^s*)|(s*$) (trim function like vbscript)
208.
209. 23. Match HTML tags: .*1>|
210.
211. 24. Match blank lines: n[s| ]*r
212.
213. 25. Extract network links in the information: (h|H)(r|R)(e|E)(f|F) *= *('|")?(w|\|/|.)+ ('|"| *|>)?
214.
215. 26. Extract the email address in the information: w+([-+.]w+)*@w+([-.]w+)*.w+([-.]w+)*
216.
217. 27. Extract the picture link in the information: (s|S)(r|R)(c|C) *= *('|")?(w|\|/|.)+('|"| *|>)?
218.
219. 28. Extract the IP address in the information: (d+).(d+).(d+).(d+)
220.
221. 29. Extract the Chinese mobile phone number in the information: (86)*0*13d{9}
222.
223. 30. Extract the Chinese fixed phone number in the information: ((d{3,4})|d{3,4}-|s)?d{8}
224.
225. 31. Extract Chinese phone numbers (including mobile and landline phones) from the information: ((d{3,4})|d{3,4}-|s)?d{7,14}
226.
227. 32. Extract the Chinese postal code in the information: [1-9]{1}(d+){5}
228.
229. 33. Extract floating point numbers (i.e. decimals) in the information: (-?d*).?d+
230.
231. 34. Extract any number in the information: (-?d*)(.d+)?
232.
233. 35. IP: (d+).(d+).(d+).(d+)
234.
235. 36. Telephone area code: /^0d{2,3}$/
236.
237. 37. Tencent QQ number: ^[1-9]*[1-9][0-9]*$
238.
239. 38. Account number (starting with a letter, allowing 5-16 bytes, allowing alphanumeric underscores): ^[a-zA-Z][a-zA-Z0-9_]{4,15}$
240.
241. 39. Chinese, English, numbers and underline: ^[u4e00-u9fa5_a-zA-Z0-9]+$

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


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

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

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

Zend Studio 13.0.1
Powerful PHP integrated development environment

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

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
