除
static Decimal divideDecStr(String a, String b) { Rational value = Decimal.parse(a) / Decimal.parse(b); return value.toDecimal(); }