Sample input --
Dogs
Amount: 500 mg
Limitations: do not feed before dinner
Indications: Dogs are great
Catsamount: 300mg.Limitations: Cats cannot talk. Indications: cats like to eat.
Cattle (for milk)
Dosage: 200mg
Indications: none
Limitations: Cows cannot fly.

Desired Output is a the above information parsed out into four fields (animal, amount/dosage, limitations, indications)

I know how to parse this if it was in a standard format. i.e. animal name on one line, amount on another, etc. However, I'm not sure how to parse when the input contains data with varying formats. I'm guessing I should use keywords (limitation, amount, indication, and an array of species name as well) as delimiters? So if it comes across an animal type, it starts a new record object with .animal = animalname, and if it comes across "amount", then it stores in that record object's .amount all the text up until the next keyword "limitation" or "indication" (not always in order).

Anyone have any ideas on how to accomplish this? Or have had experience with parsing/extracting information from text without a standard format? Any advice or tips would be appreciated. Thanks in advance!

link|improve this question
What do you mean when you say it isn't in a standard format? Can you give an example of how the format would vary between two inputs? – Casey Wilkins Feb 1 at 20:42
Yes, the above example actually has three inputs. One for Dog, one for Cat (confusing, bc there is no space between "cat" and "amount"), and one for Cattle (for milk) – Starr Feb 1 at 21:02
This is not non-standard but arbitrary. Tell us not only what it's not but what it is, what strong rules are always valid? Otherwise people will spend a lot of time and you'll say afterwards: "Wait! Sometimes it's completely different." – Tim Schmelter Feb 1 at 21:03
Apart from that, how do you detect the next animal, it might start right after "Cows cannot fly.". How to know that this is an animal and does not belong to the previous? And you've said in your commment that even a white-space cannot be used to split words. So there is no rule. Or do you have a list of possible animalnames? – Tim Schmelter Feb 1 at 21:22
@TimSchmelter, yes, I have a list of possible animalNames. I can detect that an animal name is the start of a new record because it is always first in its line of text. – Starr Feb 1 at 23:27
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.