AX 2012 正则表达式check DoubleByte

public static boolean checkDoubleByteExist(str _inputStr)
{
    str reg = @"[^x00-xff]";

    // 正規表現
    System.Text.RegularExpressions.Match myMatch;
    ;

    if(!_inputStr)
    {
        return false;
    }

    myMatch = System.Text.RegularExpressions.Regex::Match(_inputStr, reg);

    return myMatch.get_Success();
}

http://www.cnblogs.com/linJie1930906722/p/6092238.html

原文地址:https://www.cnblogs.com/fogfog/p/6531402.html