Notably missing from the Help is an example of using the NumberFormatter class. Basically it has to be created first.  There's no reason to create it for every time you want to format a number - particularly if you are always going to be using the same parameters.   Here's the way I create a persistent instance of the class and how it can be used: $NF = NumberFormatter.new $NF.unit = "'-\"" $NF.use_fractions = true $NF.denominator = 8 This sets the par
    • Upvote
    1