Skip to main content
added 8 characters in body
Source Link
123
  • 1.6k
  • 7
  • 9

Can use perl

perl -pe 's/\b\d+\b\b(\d+\.)?\d+\b/$&*100/ge' file 

Can use perl

perl -pe 's/\b\d+\b/$&*100/ge' file 

Can use perl

perl -pe 's/\b(\d+\.)?\d+\b/$&*100/ge' file 
Source Link
123
  • 1.6k
  • 7
  • 9

Can use perl

perl -pe 's/\b\d+\b/$&*100/ge' file