我想替换所有#include "whatever.h"与#include <whatever.h>使用查找和替换功能,在Visual Studio 2005中我用正则表达式\#include \"[a-z\.h]+\"查找包含语句.但我想知道如何替换正则表达式框架.
\#include \<[a-z\.h]+\>不起作用,不会; 它取代了声明#include "whatever.h"与#include <[a-z.h]+>.如何构建替换正则表达式以保留whatever.h原样?