Uses of Class
com.caucho.quercus.lib.regexp.Regexp

Packages that use Regexp
com.caucho.quercus.lib.regexp   
 

Uses of Regexp in com.caucho.quercus.lib.regexp
 

Subclasses of Regexp in com.caucho.quercus.lib.regexp
 class Ereg
           
 class Eregi
           
 class UnicodeEreg
           
 class UnicodeEregi
           
 

Methods in com.caucho.quercus.lib.regexp that return Regexp
static Regexp RegexpModule.compileRegexp(StringValue regexpValue)
           
static Regexp RegexpModule.createRegexp(Env env, StringValue regexpValue)
           
static Regexp RegexpModule.createRegexp(StringValue regexpValue)
           
static Regexp[] RegexpModule.createRegexpArray(Env env, Value pattern)
           
static Regexp[] RegexpModule.createRegexpArray(Value pattern)
           
 Regexp RegexpCache.get(Env env, StringValue str)
           
 

Methods in com.caucho.quercus.lib.regexp with parameters of type Regexp
static RegexpState RegexpState.create(Env env, Regexp regexp)
           
static RegexpState RegexpState.create(Env env, Regexp regexp, StringValue subject)
           
static Value RegexpModule.preg_grep(Env env, Regexp regexp, ArrayValue input, int flag)
          Returns an array of all the values that matched the given pattern if the flag no flag is passed.
static Value RegexpModule.preg_match_all(Env env, Regexp regexp, StringValue subject, Value matchRef, int flags, int offset)
          Returns the number of full pattern matches or FALSE on error.
static Value RegexpModule.preg_match(Env env, Regexp regexp, StringValue subject, Value matchRef, int flags, int offset)
           
static Value RegexpModule.preg_replace_callback(Env env, Regexp regexp, Callable fun, Value subject, long limit, Value count)
          Loops through subject if subject is array of strings
static Value RegexpModule.preg_replace(Env env, Regexp regexp, Value replacement, Value subject, long limit, Value count)
          Loops through subject if subject is array of strings
static Value RegexpModule.preg_split(Env env, Regexp regexp, StringValue string, long limit, int flags)
          Returns array of substrings or of arrays ([0] => substring [1] => offset) if PREG_SPLIT_OFFSET_CAPTURE is set