parseInt method
Implementation
int parseInt() {
try {
if (Utils.isNullOREmptyORZero(this) ||
Utils.equals(trim(), "+") ||
Utils.equals(trim(), "-")) {
return 0;
} else {
return int.parse(split(".")[0]);
}
} catch (e) {
return 0;
}
}