Tagged Questions

20
votes
20answers
3k views

Can you provide an example of parsing HTML with your favorite parser?

This question is a lazy way of collecting examples of parsing HTML with a variety of languages and parsing libraries. Individual comments will be linked to in answers to questions about how to parse …
7
votes
9answers
5k views

How do you convert a C++ string to an int?

How do you convert a C++ string to an int? Assume you are expecting the string to have actual numbers in it ("1", "345", "38944", for example). Also, let's assume you don't have boost, and you …
6
votes
11answers
1k views

How do you parse a paragraph of text into sentences? (perferrably in Ruby)

How do you take paragraph or large amount of text and break it into sentences (perferably using Ruby) taking into account cases such as Mr. and Dr. and U.S.A? (Assuming you just put the sentences …
5
votes
3answers
148 views

Parsing unstructured documents into XML

I am parsing unstructured documents into a structured representation (XML) using a template to describe the intended result. A simple typical problem might be a list of strings: "Chapter 1" "Section …
5
votes
2answers
85 views

Java name parse library?

I'm searching for a library similar in functionality to the Perl Lingua::EN::NameParse module. Essentially, I'd like to parse strings like 'Mr. Bob R. Smith' into prefix, first name, last name, and …
5
votes
4answers
397 views

What is an efficient way to parse a String in Java?

How should I parse the following String using Java to extract the file path? ? stands for any number of random charaters _ stands for any number of white spaces (no new line) …
5
votes
10answers
771 views

Determine if a String is a valid date before parsing

I have this situation where I am reading about 130K records containing dates stored as String fields. Some records contain blanks (nulls), some contain strings like this: 'dd-MMM-yy' and some contain …
5
votes
11answers
1k views

How to identify if string contain a number?

hi if I have this strings: "abc" = false "123" = true "ab2" = false Is there any command like IsNumeric or something else that can identify if string has numbers? thank's in advance
5
votes
9answers
2k views

What is the fastest way to Parse a line in Delphi?

I have a huge file that I must parse line by line. Speed is of the essence. Example of a line: Token-1 Here-is-the-Next-Token Last-Token-on-Line ^ ^ Current …
4
votes
3answers
67 views

How to Convert English to Cron?

I did some searching but haven't landed anything that looks useful yet but I am wondering if anyone knows of something (tool,lib etc) that can parse English phrases and translate them into a cron …
4
votes
4answers
794 views

C#: How do I parse a string with a decimal point to a double?

I guess this is a very easy question, but I wasn't able to find a question with Google or the MSDN examples. I want to parse a string like "3.5" to a double. However, double.Parse("3.5") yields …
4
votes
2answers
146 views

Is it possible to check PHP file syntax from PHP?

I load dynamically PHP class files with autoload. And those files could be missing or corrupted by some reason. Autoload will successfully report missing files so application logic could handle that. …
4
votes
10answers
693 views

Very basic English grammar parser

I'm writing a very basic parser(mostly just to better understand how they work) that takes a user's input of a select few words, detects whether the sentence structure is OK or Not OK, and outputs the …
4
votes
3answers
314 views

How to parse kanji numeric characters using ICU?

I'm writing a function using ICU to parse an Unicode string which consists of kanji numeric character(s) and want to return the integer value of the string. "五" => 5 "三十一" => 31 "五千九百七十二" => 5972 …
4
votes
8answers
2k views

Double.TryParse or Double.Convert - what is faster and more safe?

My application reads an Excel file using VSTO and adds read data to a StringDictionary. It adds only data that is a number with few digits (1000 1000,2 1000,34 - comma is a delimiter in Russian …

1 2 3 4 5 21 next
15 30 50 per page