This topic created in 3834 days ago, the information mentioned may be changed or developed.
/* test1 test2 */ a = b + c; /* wo diu lei */
上面一行直接用 /\*.*\*/ 搜那就选中了整一行,有没有办法可以只选中头和尾的注释呢?
3 replies • 2015-11-09 10:43:05 +08:00
 |
|
1
adexbn Nov 9, 2015
^/\*[ \w]*\*/
|
 |
|
2
myth Nov 9, 2015 1
/\*.*?\*/
|