iw4madminapplicationeventparsers ParserPatternMatcher - RaidMax/IW4M-Admin GitHub Wiki
Public class
ParserPatternMatcher Description
implementation of the IParserPatternMatcher for windows (really it's the only implementation)
Diagram
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph IW4MAdmin.Application.EventParsers
IW4MAdmin.Application.EventParsers.ParserPatternMatcher[ParserPatternMatcher](/RaidMax/IW4M-Admin/wiki/ParserPatternMatcher)
end
subgraph SharedLibraryCore.Interfaces
SharedLibraryCore.Interfaces.IParserPatternMatcher[IParserPatternMatcher](/RaidMax/IW4M-Admin/wiki/IParserPatternMatcher)
class SharedLibraryCore.Interfaces.IParserPatternMatcher interfaceStyle;
end
SharedLibraryCore.Interfaces.IParserPatternMatcher --> IW4MAdmin.Application.EventParsers.ParserPatternMatcher
Members
Methods
Public methods
Returns | Name |
---|---|
void |
Compile (string pattern)compiles the pattern to be used for matching |
IMatchResult |
Match (string input)converts input string into pattern groups |
Details
Summary
implementation of the IParserPatternMatcher for windows (really it's the only implementation)
Inheritance
Constructors
ParserPatternMatcher
public ParserPatternMatcher()
Methods
Compile
public virtual void Compile(string pattern)
Arguments
Type | Name | Description |
---|---|---|
string |
pattern |
Summary
compiles the pattern to be used for matching
Match
public virtual IMatchResult Match(string input)
Arguments
Type | Name | Description |
---|---|---|
string |
input | input string |
Summary
converts input string into pattern groups
Returns
group matches
Generated with ModularDoc