I am trying to take the first six characters of an extracted field and was wondering if anyone has done this in a simple VB script. I am open to use C# too but I am just more familiar with VB.
Thanks in advance, everyone!
I am trying to take the first six characters of an extracted field and was wondering if anyone has done this in a simple VB script. I am open to use C# too but I am just more familiar with VB.
Thanks in advance, everyone!
0 out of 0 found this helpful
Comments
3 comments
Right now this is what I have but I do not believe that I am calling the variables correctly:
Field("ExportDate") = Field("Document Creation Time").Substring(0,6)
Hello,
For C# :
string Field;
NewString = Field.Substring(0,6);
Regards,
Hamdi
Can you please attach for me an exemple of the doc you have ?
Regards,
Please sign in to leave a comment.