Hi Aspose Team,
When trying to read a excel file the text coming as like below
V e n d o r N u m b e r
This is the expected output - Vendor Number
This is the code we use to extract the excel file
LoadOptions loadOptions = new LoadOptions(LoadFormat.AUTO);|
FileFormatInfo finfo = FileFormatUtil.detectFileFormat(fileName);|
if (finfo.getFileFormatType() == FileFormatType.UNKNOWN)|
{|
loadOptions = new TxtLoadOptions(LoadFormat.TAB_DELIMITED);|
}|
loadOptions.setMemorySetting(MemorySetting.MEMORY_PREFERENCE);|
Workbook w = new Workbook(fileName,loadOptions);|
Please suggest to get the word without any spacing between the characters
Please find the attachment
character_spacing_prblm.zip (214 Bytes)