Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下 CSS 行(示例):
body, greed { background-image: -webkit-gradient(from( #fff ), to( #ebebeb )); }
我想用正则表达式替换 { 和 } 之间的逗号到$ 符号(我正在使用 Notepad++)
这就是我现在得到的:{(.*)}
尝试使用这个:
,(?=[^\{\}]*\})
并替换为$.
$
正向前瞻,(?=[^\{\}]*\})确保前面有一个右大括号,中间没有大括号。
结果:
body, greed { background-image: -webkit-gradient(from( #fff )$ to( #ebebeb )); }