-
-
Notifications
You must be signed in to change notification settings - Fork 44
sharedlibrarycoreinterfaces IParserPatternMatcher
RaidMax edited this page May 21, 2023
·
1 revision
defines the capabilities of a parser pattern
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Interfaces
SharedLibraryCore.Interfaces.IParserPatternMatcher[[IParserPatternMatcher]]
class SharedLibraryCore.Interfaces.IParserPatternMatcher interfaceStyle;
end
Returns | Name |
---|---|
void |
Compile (string pattern)compiles the pattern to be used for matching |
IMatchResult |
Match (string input)converts input string into pattern groups |
defines the capabilities of a parser pattern
public IMatchResult Match(string input)
Type | Name | Description |
---|---|---|
string |
input | input string |
converts input string into pattern groups
group matches
public void Compile(string pattern)
Type | Name | Description |
---|---|---|
string |
pattern |
compiles the pattern to be used for matching
Generated with ModularDoc