About 53 results
Open links in new tab
  1. O que é parse, e como funciona o parse do DOM no HTML5?

    O parser é um analisador sintático. Sua função é ler uma entrada de dados que possuem certas regras específicas - em geral é um texto reconhecível por humanos - e montar uma estrutura de como é …

  2. 如何写一个简单的lexer和parser? - 知乎

    Part1 简单的Lexer和Parser 首先,我们来看看ToyParser项目的第一部分,也就是一个超级简单的语言的Lexer和Parser。 它只有三个TOKEN: a, b 和 END,以及一个简单的grammar: 'S -> a b a'。 没 …

  3. java - What is Parse/parsing? - Stack Overflow

    In Java, What exactly is Parsing? Why are they used? For example: Integer.parseInt(...), and parsing a string?

  4. parsing - Building a parser (Part I) - Stack Overflow

    Feb 26, 2012 · Implementing the parser by hand is usually done by some frameworks. Implementing something like that by hand and efficiently is usually done at a university in the better part of a …

  5. What is parsing in terms that a new programmer would understand?

    May 29, 2010 · A parser for that language would accept AABB input and reject the AAAB input. That is what a parser does. In addition, during this process a data structure could be created for further …

  6. parsing - lexers vs parsers - Stack Overflow

    Are lexers and parsers really that different in theory? It seems fashionable to hate regular expressions: coding horror, another blog post. However, popular lexing based tools: pygments, geshi,...

  7. Example parsers to learn how to write them - Stack Overflow

    A parser generator is a tool used to write parsers. I guess you mean you want to learn more about generating parsers, in which case, you should refer to the documentation of parser generators (all of …

  8. c# - What is parsing? - Stack Overflow

    Jun 5, 2015 · A parser is a compiler / interpreter component that breaks data into smaller elements for easy translation into another language. A parser takes input in the form of a sequence of tokens or …

  9. Looking for a clear definition of what a "tokenizer", "parser" and ...

    Mar 28, 2018 · A tokenizer breaks a stream of text into tokens, usually by looking for whitespace (tabs, spaces, new lines). A lexer is basically a tokenizer, but it usually attaches extra context to the tokens …

  10. Parsing HTML using Python - Stack Overflow

    Jul 29, 2012 · Learn how to parse HTML using Python with this Stack Overflow guide, featuring helpful tips and code examples for effective web scraping.