[вычислительная техника] синтаксический анализатор
синтаксический анализатор; анализатор часть компилятора, выполняющая чтение исходного текста программы, проверку её синтаксиса и создание промежуточного файла, который служит для блоков, выполняющих дальнейшие стадии компиляции. Другими словами, он превращает входной поток символов в поток лексем (смотри token) Смотри также: parsing, YACC
noun one that parses; specifically a computer program that breaks down text into recognized strings of characters for further analysis
An algorithm or program to determine the syntactic structure of ("to parse") a sentence or string of symbols in some language. A parser normally takes as input a sequence of tokens output by a lexical analyser. It may produce some kind of abstract syntax tree as output. A parser may be produced automatically from a grammar by a parser generator such as yacc. A parser is normally part of some larger program, like a compiler, which takes the output of the parser and attempts to extract meaning from it in some way, e.g. translating it into another language.