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?
export matching characters
Was this article helpful?
0 out of 0 found this helpful
Comments
3 comments
Hello,
For your scenario you may use autocorrection script: http://help.abbyy.com/en-us/flexicapture/12/developer/script_conversion
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?
string text = Value.Text;
bool ifStrContains = text.Contains("GRNG");
if (ifStrContains)
{
Value.Text = "GRNG";
}
else
{
Value.Text = "";
}
Please sign in to leave a comment.