I'm not having great success finding an answer in google for this question.
I wanted to try to format a double into a percentage using the String.format() method (not the number format classes). I was trying to figure out a String which would work, and the closest I've gotten is this:
This outputs:
The problem, is that I am wanting it to treat my value as a percentage in decimal form, meaning the output I want to get is:0.75%
Is there a format which will treat it like a percentage? If not, is it possible to do math inside of the format String (multiply the value by 100)?75.42%