Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

70
votes
43answers
7k views

Code Golf: Evaluating Mathematical Expressions

Challenge Here is the challenge (of my own invention, though I wouldn't be surprised if it has previously appeared elsewhere on the web). Write a function that takes a single argument that is a ...
21
votes
9answers
912 views

what is the best way to parse this string in C#

i have a string that i am reading from another system. its basically a long string that represents a list of key value pairs that are separated by a space in between. It looks like this: ...
21
votes
12answers
17k views

Split string containing command-line parameters into string[] in C#

I have a single string that contains the command-line parameters to be passed to another executable and I need to extract the string[] containing the individual parameters in the same way that C# ...
18
votes
9answers
3k views

Elegant structured text file parsing

I need to parse a transcript of a live chat conversation. My first thought on seeing the file was to throw regular expressions at the problem but I was wondering what other approaches people have ...
13
votes
13answers
910 views

Code Golf: Quickly Build List of Keywords from Text, Including # of Instances

I've already worked out this solution for myself with PHP, but I'm curious how it could be done differently - better even. The two languages I'm primarily interested in are PHP and Javascript, but I'd ...
11
votes
2answers
263 views

Which Perl modules for good for data munging?

Nine years ago when I started to parsing HTML and free text with Perl I read the classic Data Munging with Perl. Does someone know if David is planning to update the book or if there are similar books ...
11
votes
5answers
972 views

Can I transpose a file in Vim?

I know I can use AWK but I am on a Windows box. I am making a function for others that may not have AWK. I also know I can write a C program but I would love not have to create maintain and compile ...
10
votes
2answers
2k views

Create Great Parser - Extract Relevant Text From HTML/Blogs

I'm trying to create a generalized HTML parser that works well on Blog Posts. I want to point my parser at the specific entrie's URL and get back clean text of the post itself. My basic approach (from ...
10
votes
11answers
3k views

How should I detect which delimiter is used in a text file?

I need to be able to parse both CSV and TSV files. I can't rely on the users to know the difference, so I would like to avoid asking the user to select the type. Is there a simple way to detect which ...
7
votes
5answers
214 views

Search Engine Keywords Parser

Here is what I want to do: I need to create a search engine parser that uses the following operators: Apples AND Oranges (AND operator) Apples OR Oranges (OR operator) Apples AND NOT Oranges (AND ...
7
votes
3answers
6k views

How Do I Tokenize This String in Ruby?

I have this string: %{Children^10 Health "sanitation management"^5} And I want to convert it to tokenize this into an array of hashes: [{:keywords=>"children", :boost=>10}, {:keywords=>"health", ...
6
votes
3answers
235 views

Howto clean comments from raw sql file

I have problem with cleaning comments and empty lines from already existing sql file. The file has over 10k lines so cleaning it manually is not an option. I have a little python script, but I have ...
6
votes
2answers
384 views

How can I extract/parse tabular data from a text file in Perl?

I am looking for something like HTML::TableExtract, just not for HTML input, but for plain text input that contains "tables" formatted with indentation and spacing. Data could look like this: Here ...
6
votes
5answers
407 views

What do people mean when they say “Perl is very good at parsing”? [closed]

What do people mean when they say "Perl is very good at parsing"? How is Perl any better or more powerful than other scripting languages such as Python or Ruby?
5
votes
4answers
146 views

Strategy for parsing natural language descriptions into structured data

I have a set of requirements and I'm looking for the best Java-based strategy / algorthm / software to use. Basically, I want to take a set of recipe ingredients entered by real people in natural ...
5
votes
4answers
259 views

Flexible text parsing strategies

Problem I'm trying to find a flexible way to parse email content. Below is an example of dummy email text I'm working with. I'd also like to avoid regular expressions if at all possible. However, at ...
5
votes
2answers
127 views

Parse values from a string

How would you parse the values in a string, such as the one below? 12:40:11 8 5 87 The gap between numbers varies, and the first value is a time. The following regular ...
5
votes
2answers
440 views

Making links clickable in Javascript?

Is there an simple way of turning a string from Then go to http:/example.com/ and foo the bar! into Then go to <a href="http://example.com">example.com</a> and foo the bar! in ...
5
votes
6answers
2k views

How to do Erlang pattern matching using regular expressions?

When I write Erlang programs which do text parsing, I frequently run into situations where I would love to do a pattern match using a regular expression. For example, I wish I could do something like ...
4
votes
1answer
166 views

Javascript, Text Annotations and Ideas

I am very curious to here input from others on a problem I've been contemplating for some time now. Essentially I would like to present a user with a text document and allow him/her to make ...
4
votes
4answers
227 views

How can I reformat a CSV file into a Google Calendar Format?

So after doing some research I was able to find the format I need to get the CSV File into Subject,Start Date,Start Time,End Date,End Time,All Day Event,Description,Location,Private The issue is, ...
4
votes
5answers
252 views

Parse in C# with Dictionary<string, string>

I am new to programming and have been trying hard to parse a file. I, initially was trying to parse it in a certain way, but that didn't end up working correctly. I want to parse the following line in ...
4
votes
2answers
154 views

fault-tolerant python based parser for WikiLeaks cables

Some time ago I started writing a BNF-based grammar for the cables which WikiLeaks released. However I now realized that my approach is maybe not the best and I'm looking for some improvement. A cabe ...
4
votes
5answers
435 views

Find important text in arbitrary HTML using PHP?

I have some random HTML layouts that contain important text I would like to extract. I cannot just strip_tags() as that will leave a bunch of extra junk from the sidebar/footer/header/etc. I found a ...
4
votes
4answers
210 views

C# Dependency Injection

I'm trying to see if I understand depedency injection. I have a project that is used as a parser. It can parse delimited text, key-value and will also regex. The first way this was done was in one ...
4
votes
3answers
696 views

In Perl, how can I correctly parse tab/space delimited files with quoted strings?

I need to parse tab/space delimited files that have a lot of columns in Perl. The values are such that the there are large strings enclosed within double quotes. These strings can have any characters ...
4
votes
4answers
402 views

Parse string into a tree structure?

I'm trying to figure out how to parse a string in this format into a tree like data structure of arbitrary depth. "{{Hello big|Hi|Hey} {world|earth}|{Goodbye|farewell} {planet|rock|globe{.|!}}}" ...
4
votes
4answers
340 views

Text parsing, conditional text

I have a text template with placehoders that I parse in order to replace placeholders with real values. Text Template: Name:%name% Age:%age% I use StringBuilder.Replace() to replace placeholders ...
4
votes
2answers
527 views

Reading the next line using LINQ and File.ReadAllLines()

I have a file which represents items, in one line there's Item GUID followed by 5 lines describing the item. Example: Line 1: Guid=8e2803d1-444a-4893-a23d-d3b4ba51baee name= line1 Line 2: Item ...
4
votes
7answers
2k views

Python parsing bracketed blocks

What would be the best way in python to parse out chunks of text contained in matching brackets? "{ { a } { b } { { { c } } } }" should initially return: [ "{ a } { b } { { { c } } }" ] putting ...
4
votes
3answers
3k views

PDF Text Extraction Approach Using OCR

Has anybody attempted to extract text from a PDF using an OCR library and Java? What did you find to be the most reliable library for text extraction. Most of the approaches I've seen (tesseract, ...
4
votes
3answers
1k views

Python parsing

I'm trying to parse the title tag in an RSS 2.0 feed into three different variables for each entry in that feed. Using ElementTree I've already parsed the RSS so that I can print each title [minus ...
3
votes
1answer
54 views

Looking for working demos of APIs (any language) into Outlook to data mine emails to produce social graphs and knowledge graphs and tagging

I'd like to data mine my Outlook mailboxes at work to be able to learn more about interactions with people and their areas of expertise: Generate social graphs from To: and Cc: lists to show people ...
3
votes
1answer
207 views

Extract text from PDF based on user's touch position

How to extract the text from PDF file Using Objective C ? Is there any code to parse the text position from the PDF file? Please help me. Thanks in advance.
3
votes
3answers
115 views

Slimming Down Exception/Environment.StackTrace Meaningfully

I am analyzing errors in a legacy application as I clean it up and improve it. I have some stack traces being logged to the database, but there is a limit (VARCHAR2(1000)) to how much it is storing, ...
3
votes
4answers
109 views

Easiest way to read single int from front of string

I have an input string that looks something like this: 4 Bob 32 Joe 64 Sue 123 Bill 42 Where the 4 indicates the number of string integer pairs to follow. My current way of processing this looks ...
3
votes
3answers
130 views

Is there a way to convert tables of text into a PowerShell Object

There are many tools that output their data in in a table format. One such example is diskpart. Shaving off some extraneous output, you would get something like this. Disk ### Status Size ...
3
votes
3answers
233 views

How to strip variable spaces in each line of a text file based on special condition - one-liner in Python?

I have some data (text files) that is formatted in the most uneven manner one could think of. I am trying to minimize the amount of manual work on parsing this data. Sample Data : Name ...
3
votes
5answers
713 views

Parsing text file using C#

http://yfrog.com/bftransactionsp Looking for a good way to parse out of this text file, the values highlighted with the yellow boxes using C#. Each section is delineated by a TERM # which I forgot to ...
3
votes
4answers
183 views

Regular expression in C#

i have text something like this. @@MMIVLoader@ProductVer@4.1.2@BCM_7400S_LE@Product@Aug 21 2009@ @@MMIVLib@ObjectVer@4.1.2@BCM_7400S_LE@Product@Aug 21 2009@ ...
3
votes
2answers
345 views

Help with parsing a log file (ANTLR3)

I need a little guidance in writing a grammar to parse the log file of the game Aion. I've decided upon using Antlr3 (because it seems to be a tool that can do the job and I figured it's good for me ...
3
votes
5answers
1k views

Python: Read configuration file with multiple lines per key

I am writing a small DB test suite, which reads configuration files with queries and expected results, e.g.: query = "SELECT * from cities WHERE name='Unknown';" count = 0 level ...
3
votes
1answer
331 views

library to parse a relative date (like google calendar can) in c#

I'm asking the same question as this: http://stackoverflow.com/questions/296738/how-can-i-parse-relative-dates-with-perl but in C#. Sorry if this is a duplicate, ill delete if so. Does such a ...
3
votes
5answers
2k views

String parsing, extracting numbers and letters

What's the easiest way to parse a string and extract a number and a letter? I have string that can be in the following format (number|letter or letter|number), i.e "10A", "B5", "C10", "1G", etc. I ...
2
votes
2answers
39 views

Parse string in javascript

How can I parse this string on a javascript, var string = "http://www.facebook.com/photo.php?fbid=322916384419110&set=a.265956512115091.68575.100001022542275&type=1"; I just want to get the ...
2
votes
2answers
42 views

Fast text parser for server-client messages - MMO

Application I am working on an MMO and have run into an issue. The MMO server I've built is fast and locally sending messages to my game client every ~50 milliseconds on UDP sockets. Here is an ...
2
votes
1answer
33 views

Frameworks, libraries or tools for natural text processing in Mac OS X

I'm looking for a solution to extract dates from the user input. It should support: other languages than English it should be written in C/ObjC/C++/Python/Perl/Ruby the target platform is Mac OS X ...
2
votes
3answers
43 views

How do I grab pieces of text from a string in Ruby?

If a user submits a string like: My living room plans #plans #livingroom @cbmeeks #design @moe @larry -this is cool! I want to have the following arrays/strings: text = "My living room plans" ...
2
votes
1answer
63 views

Optional parameters in Bash regular expression

I want to parse strings similar to the following into separate variables using regular expressions from within Bash: Category: ...
2
votes
3answers
52 views

Parsing string - with regex or something similar?

I'm writing routing class and need help. I need to parse $controller variable and assign parts of that string to another variables. Here is examples of $controller: $controller = ...

1 2 3 4 5