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.
我正在尝试在记事本++中查找和替换。例如我想替换
border-radius: 2px 3px 2px;
我正在使用此代码查找:
border-radius: ([^A-Za-z]*);
但是我的表达式只搜索这种类型的代码(只有一个半径值):
border-radius:2px;
请告诉我如何找到:
border-radius: **** ;
如果你想找到border-radius:任何东西,只需放松你的约束:
border-radius:
border-radius:(.*?);
.表示任何字符。表示它们中的*任意数量。但是?限制到最小匹配可能,这意味着它在第一个停止;(否则模式将匹配整行,如果行上有多个规则)。
.
*
?
;