Méthode | Description | |
---|---|---|
RegExp ( string s ) : Lucene.Net.Support |
Constructs new
|
|
RegExp ( string s, int syntax_flags ) : Lucene.Net.Support |
Constructs new
|
|
SetAllowMutate ( bool flag ) : bool |
Sets or resets allow mutate flag. If this flag is set, then automata construction uses mutable automata, which is slightly faster but not thread safe. By default, the flag is not set.
|
|
ToAutomaton ( ) : Automaton |
Constructs new
|
|
ToAutomaton ( AutomatonProvider automaton_provider ) : Automaton |
Constructs new
|
|
ToAutomaton ( Automaton>.IDictionary |
Constructs new
|
|
ToString ( ) : string |
Constructs string from parsed regular expression.
|
Méthode | Description | |
---|---|---|
Check ( int flag ) : bool | ||
FindLeaves ( RegExp exp, Kind kind, IList |
||
GetIdentifiers ( ISet |
||
MakeAnyChar ( ) : RegExp | ||
MakeAnyString ( ) : RegExp | ||
MakeAutomaton ( string s ) : RegExp | ||
MakeChar ( int c ) : RegExp | ||
MakeCharRange ( int from, int to ) : RegExp | ||
MakeComplement ( RegExp exp ) : RegExp | ||
MakeConcatenation ( RegExp exp1, RegExp exp2 ) : RegExp | ||
MakeEmpty ( ) : RegExp | ||
MakeIntersection ( RegExp exp1, RegExp exp2 ) : RegExp | ||
MakeInterval ( int min, int max, int digits ) : RegExp | ||
MakeOptional ( RegExp exp ) : RegExp | ||
MakeRepeat ( RegExp exp ) : RegExp | ||
MakeRepeat ( RegExp exp, int min ) : RegExp | ||
MakeRepeat ( RegExp exp, int min, int max ) : RegExp | ||
MakeString ( RegExp exp1, RegExp exp2 ) : RegExp | ||
MakeString ( string s ) : RegExp | ||
MakeUnion ( RegExp exp1, RegExp exp2 ) : RegExp | ||
Match ( int c ) : bool | ||
More ( ) : bool | ||
Next ( ) : int | ||
ParseCharClass ( ) : RegExp | ||
ParseCharClassExp ( ) : RegExp | ||
ParseCharClasses ( ) : RegExp | ||
ParseCharExp ( ) : int | ||
ParseComplExp ( ) : RegExp | ||
ParseConcatExp ( ) : RegExp | ||
ParseInterExp ( ) : RegExp | ||
ParseRepeatExp ( ) : RegExp | ||
ParseSimpleExp ( ) : RegExp | ||
ParseUnionExp ( ) : RegExp | ||
Peek ( string s ) : bool | ||
RegExp ( ) : Lucene.Net.Support | ||
ToAutomaton ( Automaton>.IDictionary |
||
ToAutomatonAllowMutate ( Automaton>.IDictionary |
||
ToStringBuilder ( StringBuilder b ) : StringBuilder |
public RegExp ( string s ) : Lucene.Net.Support | ||
s | string | regexp string |
Résultat | Lucene.Net.Support |
public RegExp ( string s, int syntax_flags ) : Lucene.Net.Support | ||
s | string | regexp string |
syntax_flags | int | boolean 'or' of optional syntax constructs to be /// enabled |
Résultat | Lucene.Net.Support |
public SetAllowMutate ( bool flag ) : bool | ||
flag | bool | if true, the flag is set |
Résultat | bool |
public ToAutomaton ( AutomatonProvider automaton_provider ) : Automaton | ||
automaton_provider | AutomatonProvider | provider of automata for named identifiers |
Résultat | Automaton |
public ToAutomaton ( Automaton>.IDictionary |
||
automata | Automaton>.IDictionary | a map from automaton identifiers to automata (of type
/// Automaton ). |
Résultat | Automaton |