I simply want to go through and find every numerical value in a single, or batch of, CSS files and multiple times two, then save.
Any suggestions for the easiest way to do this?
I simply want to go through and find every numerical value in a single, or batch of, CSS files and multiple times two, then save.
Any suggestions for the easiest way to do this?
Copyright © 2021 Jogjafile Inc.
Using regular expressions could solve your problem. For example, in python you could do the following:
This code could be reduced in length, but I've deliberately left it less compact for readability. One flaw with it is that it contracts floats to only 2 decimal places, but that can be easily changed if you really need extended decimals (change the number in
"%s%.2f"
to the desired number of places).Note also that this code could change the names of CSS selectors (for example,
#footer-2
would become#footer-4.00
). If you wanted to avoid that, you'll need to adjust the code to ignore text outside of{...}
.