芭蕾舞女演员中的正则表达式无法正常工作。如何解决?

时间:2019-01-10 13:28:12

标签: regex wso2 ballerina

我具有使用芭蕾舞演员正则表达式检查整数格式的功能。我正在使用芭蕾舞女演员0.990.2,它给出了result = false。如何在芭蕾舞女演员Lang中使用正则表达式检查整数格式?

function isInteger(string input) returns boolean {
        string regEx = "([0-9])";
        boolean|error isInt = input.matches(regEx);
        if (isInt is error) {
            panic isInt;
        } else {
            return isInt;
        }
    }

boolean result= isInteger("123");

0 个答案:

没有答案