Hi Experts,
I am working are reading data from a csv file placed in SFTP folder.
I am using System.IO.StreamReader to read data from SFTP
I could extract all the values of all columns in csv file except one which is in exponential format.
e.g 3.53E+14 ; But the actual cell value is 352985000000000
Is there any way in x++ to read the actual cell value instead of exponential value. Below is my sample code.
System.IO.Stream dataStream;
dataStream = SFXConnector::downloadFile(address,port,username,password);
using (System.IO.StreamReader streamReader = new System.IO.StreamReader(dataStream))
{
while(!streamReader.EndOfStream)
{
str dataLine = streamReader.ReadLine();
container record = str2con(dataLine, ",", false);
str securityNumber = conpeek(record,1);
}
}
Thanks,
N.Sridhar
*This post is locked for comments
I have the same question (0)