How to change number format (different decimal separator) from XXXXXX.XXX to XXXXXX,XXX using sed or awk?

Thanks!

link|improve this question
feedback

6 Answers

you could do this:

$ echo "XXX.XX" | sed s/\\./,/g

ps: wouldn't that question fit better on superuser.com?

link|improve this answer
feedback

if you have bash/ksh etc

var=XXX.XXX
echo ${var/./,}
link|improve this answer
Nice, here is a more cumbersome one that works in all POSIX shells: var=XXX.XXX; echo ${var%.*},${var##*.} – schot Aug 9 '10 at 11:28
feedback

I think

s/\./,/g

should serve what u want... unless u want something more special...

link|improve this answer
feedback

Since the question is also tagged awk:

awk 'gsub(/\./,",")||1'
link|improve this answer
don't have to use ||1, awk 'gsub(/\./,",") – ghostdog74 Aug 9 '10 at 10:42
@ghostdog74 gsub returns the number of replacements, your version skips lines that do not contain at least one dot. I don't know enough about the OP's input data to omit the ||1. – schot Aug 9 '10 at 10:59
feedback

Wouldn't this be more accurate as the OP whas talking about numbers.. to make sure it is a leading number before the dot. The document could hold other dots that the OP don't want to substitute.

sed '/[0-9]\./s/\./,/g'
link|improve this answer
feedback

How rigorous do you want to be? You could change all . characters, as others have suggested, but that will allow a lot of false positives if you have more than just numbers. A bit stricter would be to require that there are digits on both sides of the point:

$ echo 123.324 2314.234 adfdasf.324 1234123.daf 255.255.255.0 adsf.asdf a1.1a |
>   sed 's/\([[:digit:]]\)\.\([[:digit:]]\)/\1,\2/g'
123,324 2314,234 adfdasf.324 1234123.daf 255,255,255,0 adsf.asdf a1,1a

That does allow changes in a couple of odd cases, namely 255.255.255.0 and a1.1a, but handles "normal" numbers cleanly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.