File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,6 @@ private async Task<string> ExtractDetailsFromPDF()
142
142
text += pdfViewer . ExtractText ( pageIndex , out textLines ) ;
143
143
extractedText . AppendLine ( text ) ;
144
144
}
145
-
146
145
return ProcessExtractedText ( extractedText . ToString ( ) ) ;
147
146
}
148
147
/// <summary>
@@ -153,7 +152,6 @@ private async Task<string> ExtractDetailsFromPDF()
153
152
private string ProcessExtractedText ( string fullText )
154
153
{
155
154
string [ ] pages = fullText . Split ( new string [ ] { "\f " , "\n \n Page " } , StringSplitOptions . RemoveEmptyEntries ) ;
156
-
157
155
for ( int i = 0 ; i < pages . Length ; i ++ )
158
156
{
159
157
processedText . AppendLine ( $ "... Page { i + 1 } ...") ;
@@ -166,7 +164,6 @@ private string ProcessExtractedText(string fullText)
166
164
}
167
165
processedText . AppendLine ( ) ;
168
166
}
169
-
170
167
return processedText . ToString ( ) ;
171
168
}
172
169
/// <summary>
You can’t perform that action at this time.
0 commit comments