我具有使用芭蕾舞演员正则表达式检查整数格式的功能。我正在使用芭蕾舞女演员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");