(a,b,c)
テキスト ファイルには、a、b、c が倍精度実数のように見える行がたくさんあります(8.27605704077856,0.505526531790625,1.15577754382534e-05)
。Perl で 10e-4 より小さい数値を 0 に置き換える簡単な方法はありますか?
編集:たとえば、処理されるテキスト ファイルは次のようになります。
\plotinstruction[color,style,width]
points{
(8.27,0.5,1.1e-05)
(8.26,1,4.1e-06)
(8.25,1.5,3e-06)
}
そして、私は新しいファイルに書きたい:
\plotinstruction[color,style,width]
points{
(8.27,0.5,0)
(8.26,1,0)
(8.25,1.5,0)
}