//用正则表达式求末尾文件
  private string GetFileName(string FullName)
  {
     Regex re=new Regex(@"""[^""]*$");
     Match ma=re.Match(FullName);
     if( ma.Success)
       return ma.Value.Substring(1);
     else
       return "";
  }

相关文章:

  • 2022-12-23
  • 2021-06-29
  • 2021-04-28
  • 2022-12-23
  • 2022-12-23
  • 2021-11-20
  • 2021-09-22
猜你喜欢
  • 2021-06-20
  • 2022-12-23
  • 2022-12-23
  • 2021-08-31
  • 2022-03-07
  • 2022-12-23
  • 2021-06-05
相关资源
相似解决方案