From: Robert Thorpe <rt@robertthorpeconsulting.com>
To: Marcin Borkowski <mbork@wmi.amu.edu.pl>
Cc: help-gnu-emacs@gnu.org
Subject: Re: Regex replace for numbers
Date: Fri, 03 Oct 2014 02:41:32 +0100 [thread overview]
Message-ID: <87tx3mx73n.fsf@robertthorpeconsulting.com> (raw)
In-Reply-To: <87mw9ex8nk.fsf@wmi.amu.edu.pl> (message from Marcin Borkowski on Fri, 03 Oct 2014 03:07:59 +0200)
Marcin Borkowski <mbork@wmi.amu.edu.pl> writes:
> On 2014-10-03, at 02:33, Robert Thorpe wrote:
>
>> I'm not very good with Emacs regex, I need to search-and-replace on some numbers.
>>
>> How can I detect unnecessary zeros at the end of a number and chop them
>> off? E.g. turn 567.45000 to 567.45 without also turning 6700 to 67.
>
> What about
>
> M-%
> \([0-9]+\)\.\([0-9]*?\)0+ RET
> \1.\2 RET
That needs C-M-%, regexp-replace. If I have a number like 456.0040 then
it replaces the first two zeros giving 456.40, which is wrong. It seems
that shortest-match regexps aren't very useful here. If I remove the ?
in the regexp then it works, but it only removes one layer of zeros at a
time, so e.g. 567.45000 becomes 567.4500.
BR,
Robert Thorpe
next prev parent reply other threads:[~2014-10-03 1:41 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-03 0:33 Regex replace for numbers Robert Thorpe
2014-10-03 1:07 ` Marcin Borkowski
2014-10-03 1:41 ` Robert Thorpe [this message]
2014-10-03 2:45 ` Yuri Khan
2014-10-03 5:25 ` Nicolas Richard
[not found] ` <mailman.10347.1412313926.1147.help-gnu-emacs@gnu.org>
2014-10-03 11:43 ` Udyant Wig
2014-10-03 14:40 ` Nicolas Richard
2014-10-03 19:22 ` Robert Thorpe
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=87tx3mx73n.fsf@robertthorpeconsulting.com \
--to=rt@robertthorpeconsulting.com \
--cc=help-gnu-emacs@gnu.org \
--cc=mbork@wmi.amu.edu.pl \
/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).