function Decimal { NbCar=`expr "$1" : '.*'` NbChiffres=`expr "$1" : '[0-9]*'` if [ "$NbChiffres" = "$NbCar" ] ; then return 0 else return 1 fi }