Destructor. Frees the C-allocated pcre object.
Compiles the specified regex for use in the match() method. Cleans up a previously compiled regex, if this instance has been used before.
Performs a regular expression match and returns an array of slices of all matches
Performs a regular expression match and return the first found match
Perform a regular expression match.
Study a compiled regex in order to increase processing efficiency when calling match(). This is usually only worth doing for a regex which will be used many times, and does not always yield an improvement in efficiency.
Compiled regex class. Enables a regex pattern to be compiled once and used for multiple searches.