I have a question how to write code that will convert double numbers into string using different decimal number formats based on criteria.
For example
1) if number of integer digits < N: use number format as ####(N times).### (3 fraction digits)
2) if number of integer digits >=N: use scientific number format 0.###E0
I only come out with idea with manually counting integers digits(by dividing by 10).Then use if/else.
Is there any other way to do it?