Hi all,
I'm using SDK (C#) to create and popule a CSV.
The values are picked from tokens.
E.G : token : "A12345B" => value in the CSV : "A12345B"
But sometimes, my token's value start with 0 and is only number (eg. 0132456)
At this moment, the value in the CSV is not the right one.
E.G : token : "000123" => value in the CSV : "123" (this should be "000123")
My token is a string data.
On my script, I'm using Convert.ToString(GetTokenValue("Col1")).
But this is not enought. The value in my CSV is still "123456" and not "0123456"
Need some helps.
Thanks in advance and regards.