©
Dokumen ini menggunakan Manual laman web PHP Cina Lepaskan
正则表达式的威力源于它可以在模式中拥有选择和重复的能力。 一些字符被赋予 特殊的涵义,使其不再单纯的代表自己,模式中的这种有特殊涵义的编码字符 称为 元字符。
共有两种不同的元字符:一种是可以在模式中方括号外任何地方使用的,另外一种 是需要在方括号内使用的。 在方括号外使用的元字符如下:
[#1] Thomas [2015-03-27 12:38:34]
The meta character $ accepts a (one) newline character (\n).
(Take a moment to let this information sink in)
You might want to (r)trim() your input afterwards if you have a match because otherwise it (still) might not meet a length requirement or other strange stuff might happen when you store the input as-is.