gpt4 book ai didi

c# - 如何在 C# 中替换 CSS 文件中的值?

转载 作者:行者123 更新时间:2023-11-28 00:05:54 24 4
gpt4 key购买 nike

我有一个包含如下数据的 CSS 文件:

@font-face{font-family:"AkzidenzGroteskBE-Bold";font-weight: bold; font-style: normal;src:url(/AkzidenzGroteskBE-Bold.otf);}
@font-face{font-family:"AkzidenzGroteskBE-Regular";font-weight: normal; font-style: normal;src:url(/AkzidenzGroteskBE-Regular.otf);}
@font-face{font-family:"AmericanTypewriterStd-Med";font-weight: normal; font-style: normal;src:url(/AmericanTypewriterStd-Med.otf);}
@font-face{font-family:"AvantGarde Bold";font-weight: bold; font-style: normal;src:url(/AvantGarde-Bold.ttf);}
@font-face{font-family:"FranklinGothicLT-BookCnd";font-weight: normal; font-style: normal;src:url(/FranklinGothicLT-BookCnd.otf);}

我想做到:

@font-face{font-family:"AkzidenzGroteskBE-Bold";font-weight: bold; font-style: normal;src:url(../Fonts/AkzidenzGroteskBE-Bold.otf);}
@font-face{font-family:"AkzidenzGroteskBE-Regular";font-weight: normal; font-style: normal;src:url(../Fonts/AkzidenzGroteskBE-Regular.otf);}
@font-face{font-family:"AmericanTypewriterStd-Med";font-weight: normal; font-style: normal;src:url(../Fonts/AmericanTypewriterStd-Med.otf);}
@font-face{font-family:"AvantGarde Bold";font-weight: bold; font-style: normal;src:url(../Fonts/AvantGarde-Bold.ttf);}
@font-face{font-family:"FranklinGothicLT-BookCnd";font-weight: normal; font-style: normal;src:url(../Fonts/FranklinGothicLT-BookCnd.otf);}

我在每行末尾的引用中添加了 ../Fonts/

我正在尝试读取每一行并使用多个 substring 找出 ()之间的值;

它变得非常复杂。请提供一个简单的解决方案。

最佳答案

检查是否有效

YourDiv.Attributes.CssStyle.Add("src", "url(../Fonts/AkzidenzGroteskBE-Bold.otf)");

关于c# - 如何在 C# 中替换 CSS 文件中的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55703526/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com