-
-
Notifications
You must be signed in to change notification settings - Fork 44
iw4madminapplicationeventparsers ParserPatternMatcher
RaidMax edited this page May 21, 2023
·
1 revision
implementation of the IParserPatternMatcher for windows (really it's the only implementation)
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph IW4MAdmin.Application.EventParsers
IW4MAdmin.Application.EventParsers.ParserPatternMatcher[[ParserPatternMatcher]]
end
subgraph SharedLibraryCore.Interfaces
SharedLibraryCore.Interfaces.IParserPatternMatcher[[IParserPatternMatcher]]
class SharedLibraryCore.Interfaces.IParserPatternMatcher interfaceStyle;
end
SharedLibraryCore.Interfaces.IParserPatternMatcher --> IW4MAdmin.Application.EventParsers.ParserPatternMatcher
Returns | Name |
---|---|
void |
Compile (string pattern)compiles the pattern to be used for matching |
IMatchResult |
Match (string input)converts input string into pattern groups |
implementation of the IParserPatternMatcher for windows (really it's the only implementation)
public ParserPatternMatcher()
public virtual void Compile(string pattern)
Type | Name | Description |
---|---|---|
string |
pattern |
compiles the pattern to be used for matching
public virtual IMatchResult Match(string input)
Type | Name | Description |
---|---|---|
string |
input | input string |
converts input string into pattern groups
group matches
Generated with ModularDoc