Метод | Описание | |
---|---|---|
Scan ( |
Uses the expression to scan the tail of the template returning the match
|
|
Scan ( string expression ) : string |
Parses the expression into a Regex and uses it to scan the tail of the template
|
|
ScanUntil ( |
Scans the template until the Regex match and returns the string until the match
|
|
ScanUntil ( string expression ) : string |
Turns the expression into a Regex and scans the template until the Regex match and returns the string until the match
|
|
Scanner ( string template ) : System.Text.RegularExpressions |
Initializes a new instance of the Scanner class.
|
public Scan ( |
||
expression | The Regex expression to use on the tail | |
Результат | string |
public Scan ( string expression ) : string | ||
expression | string | The Regex expression to use on the tail |
Результат | string |
public ScanUntil ( |
||
expression | The Regex to use for scanning until matched | |
Результат | string |
public ScanUntil ( string expression ) : string | ||
expression | string | The expression to turn into a Regex to use for scanning until matched |
Результат | string |
public Scanner ( string template ) : System.Text.RegularExpressions | ||
template | string | The template to scan |
Результат | System.Text.RegularExpressions |