AX 2012 check 输入

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AX 2012 check 输入相关的知识,希望对你有一定的参考价值。

public static boolean checkInputExist(str _inputStr,str _checkStr)
{
    int byteLen;
    int errorPos;

    System.String checkB;
    int ii;
    boolean ret;

    checkB = _checkStr;

    for(ii = 1; ii <= strLen(_inputStr); ii++)
    {
        ret = checkB.Contains(subStr(_inputStr, ii, 1));
        if(!ret)
        {
            return true;
        }
    }

    return false;
}

 

以上是关于AX 2012 check 输入的主要内容,如果未能解决你的问题,请参考以下文章