Most voted "parser" questions
It refers to the algorithm that breaks some artifact, commonly a text, into elements and captures the relationship between these elements. This tag is not for parse error questions.
Learn more…57 questions
Sort by count of
-
0
votes1
answer242
viewsFilter information in an XML using C
I need to extract relevant information from a XML which has this structure: <ARTIGO-PUBLICADO SEQUENCIA-PRODUCAO="2"> <DADOS-BASICOS-DO-ARTIGO IDIOMA="Inglês" DOI="" FLAG-RELEVANCIA="NAO"…
-
0
votes1
answer106
viewsApplication for login on another site (Facebook), error "Invalidsubmiterror"
My code is this: import robobrowser import re url = 'https://m.facebook.com' loggedin_title = 'Facebook' # isto vai servir para confirmarmos que estamos loggedin, vendo o titulo da pagina para onde…
-
0
votes1
answer57
viewsParser XML Webservice in Java
I am having problems with XML return from a webservice when trying to parse. Netbeans output complains this way: [Fatal Error] :1:13: White space is required between the destination of the…
-
0
votes1
answer88
viewsHelp to transform a for each ( from a php file_get_contents ) into Json Encode
to performing a file_get_contents php on a site, ai shows all teams of this site, in the for each loop it shows me all the time ( that are between the file tags ), but wanted to turn all these teams…
-
0
votes1
answer106
viewsHow can I count how many times a number appears in multiple arrays?
I’m trying to make an application in which I enter a txt file with the results of the last mega Sena and parse it line by line. My goal is to see how many times a certain number has appeared since…
-
-2
votes1
answer579
viewsHow to read this text and separate the names of each person using Artificial Intelligence?
I have this text, I would like to read the names of each of the players. What would be the best way to read? Is there a tool/language or extension for C# that allows me to read this structure? Not a…
-
-3
votes1
answer169
viewsHow to build a basic parse to treat a sentence and extract an action contained in it that will be executed?
I’m trying to put together a simple parse to parse commands entered by a user for a type game Text Adventure. However, I’ve never had experience with it and I don’t know if the structure and types…