This commit is contained in:
olli 2024-06-28 11:55:25 +02:00
parent 855352bdf4
commit 8a3654e42b

View File

@ -38,6 +38,15 @@ function g_calc {
[[ $g_calc_result == "."* ]] && g_calc_result="0$g_calc_result"
[[ $g_calc_result == "-."* ]] && g_calc_result="-0.${g_calc_result#-.}"
# remove ending 0 if for exabple 4.54300000
if [[ $g_calc_result =~ [0-9]+\.[0-9]+ ]]
then
while [[ $g_calc_result =~ \.?[0-9]+0$ ]]
do
g_calc_result=${g_calc_result%0}
done
fi
# check output
if ! g_num_valid_number $g_calc_result
then