I am trying to take a Double variable called 'startCheckNumber' which should have a value of '40305555' and convert to String. In doing a debug of my code the startCheckNumber shows a value of 4.030555E7. If I do the following command to convert to String it shows it like that instead of '4030555'
String displayCheckNumber = String.valueOf(startCheckNumber) ;
Is there a better way to convert a double variable to String in this case than using ValueOf? I tried 'Double.toString(number)' format and that didn't work right
Thanks