用于查找和修改 CSS 文件中数值的工具/脚本?

发布于 2024-12-14 21:47:02 字数 72 浏览 2 评论 0原文

我只是想遍历并找到单个或一批 CSS 文件中的每个数值,并多次查找两次,然后保存。

对于最简单的方法有什么建议吗?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眸中客 2024-12-21 21:47:02

使用正则表达式可以解决您的问题。例如,在 python 中,您可以执行以下操作:

import re

input = "#content {width:100px;height:20.5%;font-size:150.25%;margin-left:-20px;padding:2 0 -20 14.33333;}"

regex = re.compile("-?[.0-9]+")
scaled_numbers = [float(n)*2 for n in re.findall(regex, input)]
split_text = re.split(regex, input)

output = ''
for i in range(len(scaled_numbers)):
    output += "%s%.2f" % (split_text[i], scaled_numbers[i])

output += split_text[-1]

可以减少此代码的长度,但为了便于阅读,我故意使其不那么紧凑。它的一个缺陷是它会将浮点数压缩为小数点后两位,但如果您确实需要扩展小数位,则可以轻松更改(将 "%s%.2f" 中的数字更改为所需的数字)的地方)。

另请注意,此代码可能会更改 CSS 选择器的名称(例如,#footer-2 将变为 #footer-4.00)。如果您想避免这种情况,则需要调整代码以忽略 {...} 之外的文本。

Using regular expressions could solve your problem. For example, in python you could do the following:

import re

input = "#content {width:100px;height:20.5%;font-size:150.25%;margin-left:-20px;padding:2 0 -20 14.33333;}"

regex = re.compile("-?[.0-9]+")
scaled_numbers = [float(n)*2 for n in re.findall(regex, input)]
split_text = re.split(regex, input)

output = ''
for i in range(len(scaled_numbers)):
    output += "%s%.2f" % (split_text[i], scaled_numbers[i])

output += split_text[-1]

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 {...}.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文