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