Regular Expressions in PHP quick reference
October 22, 2012
Expression Will match… text the string “text” ^text “text” at the start of a line text$ “text” at the end of a line ^text$ “text” when it is alone on a line [Tt]ext “Text” or “text” [abc] a, b, or c [^abc] d, e, f, g, h, etc – everything that is not a, b, […]