[ https://issues.apache.org/jira/browse/LUCENENET-156?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12726216#action_12726216 ]
Enrique Martínez Zúñiga commented on LUCENENET-156: --------------------------------------------------- After applying the patch with the example code does the following marking: Searching for "novela": Una en otra: <span class=""highlight"">novela</span> de ccostumbres Instead of: Una en otra: <span class=""highlight"">novela</span> de costumbres And: <span class=""highlight"">Novela</span> CCostumbrista Instead of: <span class=""highlight"">Novela</span> Costumbrista Sample Code ... Dim idxSF As SimpleHTMLFormatter = New SimpleHTMLFormatter("<span class=""highlight"">", "</span>") Dim qs As QueryScorer = New QueryScorer(qry.Rewrite(idxReader)) Dim highlighter As Highlighter = New Highlighter(idxSF, qs) Dim ts As TokenStream = idxAnalyzer.TokenStream(strFieldName, New StringReader(strValue)) Dim strText As String = hi.GetBestFragments(ts, strValue, 80, "...") ts.Close() ... > Contrib Highlighter.net -> getBestTextFraments error > ---------------------------------------------------- > > Key: LUCENENET-156 > URL: https://issues.apache.org/jira/browse/LUCENENET-156 > Project: Lucene.Net > Issue Type: Bug > Environment: .NET framework > Reporter: Poul Erik Nielsen > > In line 274 and 275 is comment out. So far, it's obvious written wrong. It > should look like this. > if (lastEndOffset < text.Length) > newText.Append(encoder.EncodeText(text.Substring(lastEndOffset))); > If this code is comment out, it could cut off the end of the field. Example i > field ends with </span> the newText would end as </span > Please correct it in the next release. > Poul -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.