Text parsing is a variation of parsing which refers to the action of breaking a stream of text into different components, and capturing the relationship between those components.

learn more… | top users | synonyms

1
vote
2answers
43 views

How do I parse text/plain code in Java?

I am having a real problem with parsing and I dont know how to deal with it. Im working on a database that has a very untypical return of information . When you make a request the response is in plain ...
0
votes
2answers
24 views

Python 3 - Getting some strings from a HTTPrequest response

I'm having a hard time extracting data from a httprequest response. Can somebody help me? Here's a part of my code: import requests r = requests.get('https://www.example.com', verify=True) keyword ...
0
votes
1answer
28 views

Parsing a flattly-written nested text template into a usable nested data structure for N levels

I've recently been given a file intended to be used to generate HTML, a menu template of sorts and due to time constraints have gotten a python prototype working but it's brute force and works only ...
1
vote
1answer
39 views

Python 3 - Reading line by line from a textfile and doing action for each line

I need something like this done: Login to a website. Make an action to a specific URL. After the action, go to another URL (still in the site). So far here's what I've done. if ...
4
votes
3answers
105 views

Error detection and reporting using Maybe

I am writing a propositional logic parser in Haskell. I am doing the parsing by hand for now as a learning exercise. Eventually I will tackle Parsec. In the mean time, I am trying to wrap my head ...
0
votes
0answers
38 views

best way to parse rtf files for specific text

So i am working on a project for a digital study bible where they can click on a list of notes that reference a specific verse and when they click on the note, the verse, and the note attributed to it ...
0
votes
1answer
29 views

read multiple lines from one TSV file and based on column append data with comma

How do we parse data based on column index from TSV file? Once we read data from file then we must have to check column 0 line 1 data with column 0 line 2 data and if it's matching then get column 1 ...
1
vote
2answers
47 views

What is the easiest way to generate code files based on conditional compilation symbols in C#?

I am making a Nuget package that needs to output a version of code for each MVC version and each .NET version. However, for obvious maintainability reasons, I have decided to use conditional ...
1
vote
2answers
33 views

how do you determine the end of a sentence in a python serial parser?

I'm writing a python script that parses epub 2's and I'm trying to make it so I can split words, sentences and paragraphs in to their own objects... I've gotten words and paragraphs to work, but the ...
1
vote
3answers
55 views

Reading parameters from a text file into the workspace

I have a file which has the following information: % ---------------------- location details -------------------------- % % lat : latitude [minimum = -90, maximum = 90, unit = % degrees ...
1
vote
1answer
35 views

Choice operator in Haskell's parsec library

Parsec document says the following about <|> This combinator implements choice. The parser p <|> q first applies p. If it succeeds, the value of p is returned. If p fails without ...
0
votes
2answers
52 views

How do I discover text qualifiers in a flat file (CSV, TSV etc)?

We receive files in a number of different formats - CSV, TSV, or other flat files using more exotic delimiters (|, ; etc). These files may also use text qualifiers, again in a range of formats (every ...
0
votes
2answers
39 views

Multiple text parsing and writing using the while statement, the diamond operator <> and $ARGV variable in Perl

I have some text files, inside a directory and i want to parse their content and write it to a file. So far the code i am using is this: #!/usr/bin/perl #The while loop repeats the execution of a ...
1
vote
3answers
76 views

Java: How read a File line by line by ignoring “\n”

I'm trying to read a tab separated text file line per line. The lines are separated by using carriage return ("\r\n") and LineFeed (\"n") is allowed within in tab separated text fields. Since I want ...
0
votes
0answers
40 views

Parsing user data as text - no format in text

My focus is to parse some plain text, which has the information about the users, including what browser, version, and what operating systems each user used, and extract such information ...
8
votes
1answer
143 views

How can I parse a string to a function in Haskell?

I want a function that looks something like this readFunc :: String -> (Float -> Float) which operates something like this >(readFunc "sin") (pi/2) >1.0 >(readFunc "(+2)") 3.0 ...
0
votes
1answer
33 views

parsing text file into array of objects

Hi I have text file looks like below. operation=EAT starttime=134662223 endtime=134665223 totaltime=3454 end operation=DRINK starttime=134662223 endtime=134665223 totaltime=34354 end operation=SLEEP ...
0
votes
0answers
9 views

Create a parse tree

I know the basic difference between a parse tree and an abstract parse tree that the parse tree is more detailed representation of the grammar. But I have come up with a question in which no explicit ...
0
votes
0answers
19 views

Python: parsing files separated by tabs and spaces

I have some files to parse which are poorly formatted. One of the issues I face is that the fields in the file are separated by spaces, tabs or spaces & tabs. Could someone explain how I can ...
0
votes
1answer
36 views

Python - Best way to parse specific, standardized information in PDF documents?

I am trying to parse these PDF "Arms Sale Notification" letters, found here: http://www.dsca.mil/pressreleases/36-b/36b_index.htm Here is a specific PDF document example, of a proposed arms sale to ...
0
votes
1answer
42 views

Pull information from a web page that ends in .php

I need to pull a bunch of data from this website (https://www.bowdoin.edu/apps/mobile/nutrition.php - basically a huge blob of text) and eventually save it into attributes of core data entities. ...
0
votes
2answers
52 views

Parsing a formatted string with RegEx or similar

I have an application which sends a TCP message to a server, and gets one back. The message it gets back is in this format: 0,"120"1,"Data Field 1"2,"2401"3,"Data Field 3"1403-1,"multiple ...
1
vote
1answer
38 views

function crashes when reading in a csv file

I have coded a function to read in a csv file but half way through the parsing the program crashes giving me errors in strcat.The errors are at the third field which is phone.I can't spot the error I ...
0
votes
2answers
43 views

generating an index of numerical values contained in a string using python

I am working on a bit of code for a project right now, and the basic idea is to read the contents out of a file line by line and record the frequencies of each numerical value contained within. For ...
1
vote
2answers
41 views

R: Extracting proper time-date out of csv

I have a csv with some time series data with date-time formatted like this: mydata <- read.csv("mydata.csv") > mode(mydata$t_5min[1]) [1] "numeric" It looks like R is interpreting it as a ...
2
votes
4answers
71 views

Trouble with regex in Perl

I am trying to write a script to parse a trial balance sheet. The layout of each line in the file is always the same but I am having an issue getting my regex to match properly. The first 10 ...
0
votes
2answers
46 views

How to do this delimiter?

I have this String: 1945:New York University:70:Ohio State:65 I want to use a Scanner to read it and ignore the ':', 70, and 65, which are the score fields. But I want it to read the year. I ...
0
votes
2answers
63 views

All variants of string from array in PHP

I've got a string with spaces. I need to split (explode) it and got all variants of sequences from it. For example: string1 string2 string3 I need to parse it and get an output like this: string1 ...
1
vote
1answer
160 views

Parse RTF file into NSArray - objective C

I'm trying to parse and English Dictionary from an RTF file into an array. I originally had it working, but I'm not sure why it isn't now. In the dictionary, each word is separated by a new line ...
3
votes
3answers
140 views

Remove spaces in words

I do have a lot of strings in my database (PostgreSQL), an example: with mystrings as ( select 'H e l l o, how are you'::varchar string union all select 'I am fine, t h a n k you'::varchar ...
1
vote
2answers
65 views

Stored Procedure Parser

I am trying to parse through hundreds of stored procedures to specifically grab their output variables "@FirstName", which tables they use, and which fields they pull from "MyTbl.FirstName". I am able ...
0
votes
2answers
135 views

Python: Parsing through XML with mini dom

I'm parsing through a decent sized xml file, and I ran into a problem. For some reason I cannot extract data even though I have done the exact same thing on different xml files before. Here's a ...
1
vote
2answers
48 views

Command output parsing

The OS X command system_profiler SPAudioDataType gives the output shown in Appendix 1 This looks very difficult to parse to me. For example: Get the Connection of the Speaker grep for ...
0
votes
1answer
67 views

c# Parsing a flat file and editing which conist of hex code as seperator

Hi Team, I have a flat file with data init seperated by hexcode as Rows/columns I need to parse the file and inject an additional column with data. e.g. ...
0
votes
1answer
65 views

Bash: How to grab columns with “delimiter” within the column from CSV file?

I have a few CSV files I have downloaded from an online database. I am trying to cut them down so that I can insert the portions of the data that I need into my SQL database. The CSV file has ...
1
vote
3answers
94 views

Is there a tool to post-process the output of the linux script command?

Anyone know of a convenient tool to post-process the results of the linux "script" command which captures shell input and output? I.e.: I'm looking for something which can take the script output file ...
0
votes
1answer
26 views

Rails: what security issues come with extracting text from user-submitted files?

If users of an app are able to submit flat text files, and these files have data pulled from them by a program using a regex (which is then returned to the user), how can this be abused? I know there ...
0
votes
1answer
71 views

Parsing script loops in C#

I'm writing an application that will parse a script in a custom language (based slightly on C syntax and Allman style formatting) and am looking for a better (read: faster) way of parsing blocks of ...
0
votes
3answers
845 views

How to process HIPAA 834 EDI File?

I have to parse and validate HIPAA 834 EDI file. I have found out a tool "EDI Validator" for this. EDI Validator Tool: http://www.etasoft.com/ev.htm I am unable to get sample HIPAA X12 834 EDI file ...
0
votes
0answers
91 views

Reading and parsing a file inside HTML using javascript

I have a text files on my desktop which continuously gets updated(new rows gets appended to it) .I am trying to create a code which can read this data continuously (and possibly parse - next step) and ...
0
votes
1answer
73 views

Looking for general feedback on a URL-parsing script of mine (Javascript)

I'm fairly new to Javascript, and assembled the following (part is from an example online, rest is by me): This works reliably, I'm just wondering how many best-practices I'm violating. If someone is ...
1
vote
1answer
81 views

Awk: merging columns from files

I have two files, and I have to take columns I need from both files and merge them together. I'd like to use awk to do this. So from FileB I need $9->$12. If $4 of FileA matches what is in $12 of ...
0
votes
5answers
153 views

Bash: how to change first column of a file and only the first column

I have a file that was screwed up by a program and now every line looks something like this: somelongstring:number number number number ... a lot more columns (Tab delimited) What I need ...
2
votes
1answer
73 views

File conversion in OCaml

I am an almost complete OCaml newbie, but have some functional programming knowledge. I am looking for a conceptual way of converting between two specification patterns. 1 2 "tau1" 1 3 "h1" 2 1 "h1" ...
0
votes
2answers
178 views

replace each xml numeric property by its arithmetic product in string by regexp using ant or ant extensions?

I have a xml string with (among others) properties such as x-pos="NN" and y-pos="NN" where NN is a positive or negative number. I want to read every value and change it to its arithmetic product - ...
-1
votes
1answer
91 views

Find URLs in text

There are tons of solutions to find and/or parse normal URLs, but none of them deals with arbitrary text, i.e. what about URLs that are split over several lines? How would you find a URL that can have ...
1
vote
1answer
119 views

convert python dict like string to java hashmap

I am working on a project which has a python wrapper around java code. So, there is a communication between python and java code. (I am aware of jython, but we wanted to keep each implementation ...
0
votes
3answers
129 views

Parsing out single column from csv into text file using python

I finally got my dbf file to be a csv but now I am confused as to how to parse this out into a text file for further editing. I have been reading up on the csv module but to be honest my head began ...
0
votes
0answers
45 views

error in applying pre-trained model for english of maltparser

I'm embarking on maltparser. I want to apply the offered pre-trained model 'engmalt.linear-1.7' to parsing english sentence on command line. I download the engmalt and changed its file name from ...
2
votes
2answers
131 views

Target text without tags using Nokogiri

I have some very bare HTML that I'm trying to parse using Nokogiri (on Ruby): <span>Address</span><br /> 123 Main Street<br /> Sometown<br /> ...

1 2 3 4 5 8