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!