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

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

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

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

Methods in com.caucho.quercus.lib.regexp that return Ereg
static Ereg RegexpModule.createEreg(Env env, Value value)
           
static Ereg RegexpModule.createEreg(Value value)
           
 

Methods in com.caucho.quercus.lib.regexp with parameters of type Ereg
static Value RegexpModule.ereg(Env env, Ereg regexp, StringValue string, Value regsV)
          Returns the index of the first match.
static Value RegexpModule.eregImpl(Env env, Ereg regexp, StringValue string, Value regsV)
          Returns the index of the first match.
static Value RegexpModule.eregReplaceImpl(Env env, Ereg regexp, Value replacement, StringValue subject, boolean isCaseInsensitive)
          Replaces values using regexps
static Value RegexpModule.split(Env env, Ereg regexp, StringValue string, long limit)
          Returns an array of strings produces from splitting the passed string around the provided pattern.