Hello, how can I get parser result tree instead of a string ? I need to enumerate all the links that a result of parsing consist of. Thank you for attention.
I'm using OpenNLP from C# and this is sample code:
topParses = ParserTool.parseLine(InputText, FParser, 1);
foreach (var topParse in topParses)
{
topParse.show(strBldr);
}
