亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

正則表達式從 css 中刪除 @font-face 規則

正則表達式從 css 中刪除 @font-face 規則

斯蒂芬大帝 2023-03-18 10:37:30
我怎樣才能完全從 css 中刪除字體我有以下代碼:css = `@font-face{  font-family:Rating;  src:url(data:application/x-font-ttf;  charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjA....)format('woff');  font-weight:400;  font-style:normal}#milk{}@font-face{  p {  }}.some-class{}`css = css.replace(/@font[^\{]+\{([^\{\}]*\{[^\}\{]*\})+[^\}]+\}/gi,'')console.log(css)預期結果是刪除所有字體但是它給出了:@font-face{  font-family:Rating;  src:url(data:application/x-font-ttf;  charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjA....)format('woff');  font-weight:400;  font-style:normal}#milk{}.some-class{}它不會刪除 1's @font-face。
查看完整描述

1 回答

?
BIG陽

TA貢獻1859條經驗 獲得超6個贊

解決了這個問題:


工作代碼


   css = `

@font-face

{

  font-family:Rating;

  src:url(data:application/x-font-ttf;

  charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjA....)format('woff');

  font-weight:400;

  font-style:normal

}

#milk{

}

@font-face{

  p {

  }

}

.some-class{


}`

css = css.replace(/@font-face[^{]*{([^{}]|{[^{}]*})*}/gi,'')


console.log(css)


查看完整回答
反對 回復 2023-03-18
  • 1 回答
  • 0 關注
  • 186 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號