コミュニティ

Script to Take Substring of a Field (First 6 characters)

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件のコメント

  • Avatar
    Permanently deleted user

    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)

    0
  • Avatar
    Permanently deleted user

    Hello,

    For C# :

     

    string Field;

    NewString = Field.Substring(0,6);

     

     

    Regards,

    Hamdi

     

    0
  • Avatar
    Permanently deleted user

    Can you please attach for me an exemple of the doc you have ? 

    Regards,

     

    0

サインインしてコメントを残してください。