Parsing
In
computer science and
linguistics, parsing (more formally syntactic analysis) is the process of analyzing a sequence of
tokens to determine its grammatical structure with respect to a given
formal grammar. A parser is the component of a
compiler that carries out this task.Parsing transforms input text into a data structure, usually a tree, which is suitable for later processing and which captures the implied hierarchy of the input.
Lexical analysis creates tokens from a sequence of input characters and it is these tokens that are processed by a parser to build a data structure such as
parse tree or
abstract syntax trees.
See more at Wikipedia.org...
Décomposition analytique
Parser
Ein Parser [] (
engl. to parse „analysieren“ bzw. von
lateinisch pars „Teil“; im Deutschen gelegentlich auch Zerteiler) ist ein
Computerprogramm, das in der
Computertechnik für die Zerlegung und Umwandlung einer beliebigen Eingabe in ein für die Weiterverarbeitung brauchbares Format zuständig ist. Häufig werden Parser eingesetzt, um im Anschluss an den Analysevorgang die
Semantik der Eingabe zu erschließen und daraufhin Aktionen durchzuführen.
Mehr unter Wikipedia.org...
Parser
© W niniejszym artykule wykorzystano materialy pochodzace z
Wikipedia® i posiada on Powszechna
Licencje Publiczna GNU
Parsing
In
informatica, il parsing o analisi sintattica è il processo atto ad analizzare uno stream continuo in input (letto per esempio da un file o una tastiera) in modo da determinare la sua struttura grammaticale grazie ad una data
grammatica formale. Un parser è un programma che esegue questo compito.Di solito i parser non sono scritti a mano ma generati attraverso dei
generatori di parser.Tipicamente, il termine italiano viene utilizzato per riferirsi al riconoscimento di una grammatica e alla conseguente costruzione di un albero sintattico, che mostra le regole utilizzate durante il riconoscimento dall'input; l'albero sintattico viene poi visitato (anche più volte) durante l'esecuzione di un'
interprete o di un
compilatore.
Per saperne di più visita Wikipedia.org...