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人中0人がこの記事が役に立ったと言っています
コメント
3件のコメント
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,
サインインしてコメントを残してください。