Re: [OT] perl help on number modification
- From: Gianluca Cecchi <gianluca.cecchi@xxxxxxxxx>
- Date: Fri, 15 Jan 2010 11:01:41 +0100
On Thu, Jan 14, 2010 at 11:10 AM, Gianluca Cecchi
<gianluca.cecchi@xxxxxxxxx> wrote:
Todo:
1.20 must become 1.2
1.00 must become 1
1.25 must remain the same
Thanks to Dave, Jake and Geoffrey even if my answer was OT... thanks
also for the perl links
For Jake:
the problem is that in your example I think that perl assumes they are
numbers and renders them correspondingly. In my case, I get them as
strings during the workflow, so that perl doesn't manage
automatically...
For example:
perl -le '$foo=1.00; print $foo'
1
[gcecchi@tekkaman ~]$ perl -le '$foo="1.00"; print $foo'
1.00
BTW, it was the correct regex that I missed. Simple to read after you
pointed out, but (at least for me) difficult to catch initially... ;-)
Actually I had to make the job in awk where I then easily got the same
effect with:
sub(/\.?0+$/, "", foo)
Thanks again and hope to repay in some way ...
--
users mailing list
users@xxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe: https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
- Follow-Ups:
- Re: [OT] perl help on number modification
- From: Gianluca Cecchi
- Re: [OT] perl help on number modification
- From: Bill Davidsen
- Re: [OT] perl help on number modification
- From: Jake Peavy
- Re: [OT] perl help on number modification
- References:
- [OT] perl help on number modification
- From: Gianluca Cecchi
- [OT] perl help on number modification
- Prev by Date: Fwd: ssh and proxy
- Next by Date: Who do I file this bug with ?!?
- Previous by thread: Re: [OT] perl help on number modification
- Next by thread: Re: [OT] perl help on number modification
- Index(es):
Relevant Pages
|