1 iw4madminapplicationeventparsers ParserPatternMatcher
RaidMax edited this page 2023-05-20 22:09:21 -05:00

ParserPatternMatcher Public class

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]]
  end
  subgraph SharedLibraryCore.Interfaces
  SharedLibraryCore.Interfaces.IParserPatternMatcher[[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

Source code

public ParserPatternMatcher()

Methods

Compile

Source code

public virtual void Compile(string pattern)
Arguments
Type Name Description
string pattern
Summary

compiles the pattern to be used for matching

Match

Source code

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