Hey there,
I was wondering if any of you knows how to parse a text file similar to this:
quote:
"Advertisements"
{
"1"
{
"type" "S"
"text" "Ad1"
}
"2"
{
"type" "S"
"text" "Ad2"
}
"3"
{
"type" "S"
"text" "Ad3"
}
}
But only parse the ad number and the section after the word "text". For example, in the above document, it would parse:
quote:
1) Ad1
2) Ad2
3) Ad3
Thanks