C# Класс BaconBuilder.Model.Parser

Parent class used for parsers of text to html and vice versa.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Parse ( string input ) : string

Replaces each matching regex key in the dictionary with its associated value for a given string.

Parser ( ) : System.Collections.Generic

Constructor for a parser object. Initialises the find / replace dictionary.

Защищенные методы

Метод Описание
InitialiseDictionary ( ) : void

Does nothing in the parent class. Overridden in child classes to populate the dictionary with a ruleset appropriate to the type of parsing.

Описание методов

InitialiseDictionary() защищенный Метод

Does nothing in the parent class. Overridden in child classes to populate the dictionary with a ruleset appropriate to the type of parsing.
protected InitialiseDictionary ( ) : void
Результат void

Parse() публичный Метод

Replaces each matching regex key in the dictionary with its associated value for a given string.
public Parse ( string input ) : string
input string String to perform substitutions on.
Результат string

Parser() публичный Метод

Constructor for a parser object. Initialises the find / replace dictionary.
public Parser ( ) : System.Collections.Generic
Результат System.Collections.Generic