Temp file has only the number 22.5 in it.
I use
sed 's/.//' Temp
and I expect 225 but get 2.5
Why?
|
|
Temp file has only the number 22.5 in it. I use
and I expect 225 but get 2.5 Why? |
|||
|
|
|
|
Because '.' is a regular expression that matches any character. You want |
||
|
|
|
|
The dot is a special character meaning "match any character".
You would think that you could do
The reason you get 2.5 when you do |
||
|
|
|
'.' is special: it matches any single character. So in your case, the sed expression matches the first character on the line. Try escaping it like this: s/\.// |
||||
|
|
|
You want |
||
|
|
|
|
you can also use awk
|
||
|
|