unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Drew Adams <drew.adams@oracle.com>
To: Emanuel Berg <moasenwood@zoho.eu>, help-gnu-emacs@gnu.org
Subject: RE: bike shifting - output decimal in percent
Date: Sat, 18 May 2019 20:50:05 -0700 (PDT)	[thread overview]
Message-ID: <3b5af744-8dc6-42d0-9273-a8030e2b3443@default> (raw)
In-Reply-To: <86mujjrzw0.fsf@zoho.eu>

> How do I output a decimal float digit
> 0 <= x <= 1 into percent? ("A percentage?"
> Correct English?)
> 
> But I wonder if/why-not there is/isn't
> a built-in way to do it?

Use function `format'.  See `C-h f format' and
(elisp) `Formatting Strings'.

E.g.
(setq foo  0.314159265358979)

(format "%2.14g%%" (* 100.0 foo))
 => "31.459265358979%"

(format "%2.2g%%" (* 100.0 foo))
 => "31%"



  reply	other threads:[~2019-05-19  3:50 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-19  1:34 bike shifting - output decimal in percent Emanuel Berg
2019-05-19  3:50 ` Drew Adams [this message]
2019-05-19  3:57   ` Drew Adams
2019-05-19  4:09     ` Drew Adams
2019-05-19  7:05   ` Emanuel Berg
2019-05-19  7:35     ` Emanuel Berg
2019-05-19  7:53       ` Tomas Nordin
2019-05-19  8:02         ` Emanuel Berg
2019-05-19  8:15           ` Tomas Nordin
2019-05-19  8:26             ` Emanuel Berg
2019-05-19 14:26       ` Drew Adams
2019-05-19 14:15     ` Drew Adams

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3b5af744-8dc6-42d0-9273-a8030e2b3443@default \
    --to=drew.adams@oracle.com \
    --cc=help-gnu-emacs@gnu.org \
    --cc=moasenwood@zoho.eu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).