Community

export matching characters

I need to export matching characters from the particular field. Like i have a field MYINV with value "3864GRNG-56" or with value "6234GRNG612". I just want "GRNG" characters to be exported to another field. Can anyone explain?

Was this article helpful?

0 out of 0 found this helpful

Comments

3 comments

  • Avatar
    Permanently deleted user

    Hello,

    For your scenario you may use autocorrection script: http://help.abbyy.com/en-us/flexicapture/12/developer/script_conversion

    0
  • Avatar
    Sara

    Thanks. This link says that, it will not be launched on web verification station. Can you tell me what rule i need to write in that field?

    0
  • Avatar
    Permanently deleted user

    string text = Value.Text;

    bool ifStrContains = text.Contains("GRNG");

     

    if (ifStrContains)

    {

        Value.Text = "GRNG";

    }

    else

    {

        Value.Text = "";

    }

    0

Please sign in to leave a comment.