正则表达式查找未记录的异常
在旧代码中,有一些地方只是写了catch{} ,但没有把异常信息记录下来,导致了分析查找问题的原因过久,但手动去查找哪儿没有捕获异常,所需要花费的时间又太长,以前有写过一次,但后来丢了,现在又要用到,先蹩脚地记录下来,给自己用的
情景一:
catch (Exception ex)
{
}
=>
catch (Exception ex)
{
TxtLog.WriteException(string.Format("任务处理错误,错误信息:{0}", ex.Message), ex);
}
查找内容: [ ]+catch[ ]*\(Exception ex\)\n[ ]+\{\n[ ]+\n[ ]+\}
替换对象: catch (Exception ex)\n{\nTxtLog.WriteException(string.Format("任务处理错误,错误信息:{0}", ex.Message), ex);\n}
情景二:
catch (Exception ex)
{
}
=>
catch (Exception ex)
{
TxtLog.WriteException(string.Format("任务处理错误,错误信息:{0}", ex.Message), ex);
}
查找内容: [ ]+catch[ ]*\(Exception ex\)\n[ ]+\{\n[ ]+\}
替换对象: catch (Exception ex)\n{\nTxtLog.WriteException(string.Format("任务处理错误,错误信息:{0}", ex.Message), ex);\n}
情景三:
catch( )
{
}
=>
catch (Exception ex)
{
TxtLog.WriteException(string.Format("任务处理错误,错误信息:{0}", ex.Message), ex);
}
查找内容: [ ]+catch[ ]*\([ ]*\)\n[ ]+\{\n[ ]+\}
替换对象: catch (Exception ex)\n{\nTxtLog.WriteException(string.Format("任务处理错误,错误信息:{0}", ex.Message), ex);\n}
情景四:
catch( )
{}
=>
catch (Exception ex)
{
TxtLog.WriteException(string.Format("任务处理错误,错误信息:{0}", ex.Message), ex);
}
查找内容: [ ]+catch[ ]*\([ ]*\)\n[ ]+\{[ ]*\}
替换对象: catch (Exception ex)\n{\nTxtLog.WriteException(string.Format("任务处理错误,错误信息:{0}", ex.Message), ex);\n}
情景五:
catch
{
}
=>
catch (Exception ex)
{
TxtLog.WriteException(string.Format("任务处理错误,错误信息:{0}", ex.Message), ex);
}
查找内容: [ ]+catch[ ]*\n[ ]+\{[ ]*\}
替换对象: catch (Exception ex)\n{\nTxtLog.WriteException(string.Format("任务处理错误,错误信息:{0}", ex.Message), ex);\n}
情景六:
catch
{
}
=>
catch (Exception ex)
{
TxtLog.WriteException(string.Format("任务处理错误,错误信息:{0}", ex.Message), ex);
}
查找内容: [ ]+catch[ ]*\n[ ]+\{\n[ ]*\}
替换对象: catch (Exception ex)\n{\nTxtLog.WriteException(string.Format("任务处理错误,错误信息:{0}", ex.Message), ex);\n}
关于异常处理方法,看另外一篇博客
出处:http://www.cnblogs.com/maanshancss/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。所有源码遵循Apache协议,使用必须添加 from maanshancss