STR.cs
上传用户:chinapurv
上传日期:2014-03-12
资源大小:4870k
文件大小:1k
源码类别:

教育系统应用

开发平台:

C#

  1. using System;
  2. namespace 图书管理系统
  3. {
  4. /// <summary>
  5. /// STR 的摘要说明。
  6. /// </summary>
  7. public class STR
  8. {
  9. public STR()
  10. {
  11. //
  12. // TODO: 在此处添加构造函数逻辑
  13. //
  14. }
  15. public static string add0(string str)
  16. {
  17. if(str.Length==0)
  18. {
  19. return "00";
  20. }
  21. else if(str.Length==1)
  22. {
  23. str="0"+str;
  24. return str;
  25. }
  26. else return str;
  27. }
  28. public static bool IsDate(string str)
  29. {
  30. try
  31. {
  32. int.Parse(str);
  33. }
  34. catch
  35. {
  36. return false;
  37. }
  38. if(str.Length!=8) return false;
  39. string temp;
  40. temp=str.Substring(0,4)+"-"+Convert.ToString(int.Parse(str.Substring(4,2)))+"-"+Convert.ToString(int.Parse(str.Substring(6,2)));
  41. try
  42. {
  43. System.DateTime.Parse(temp);
  44. }
  45. catch
  46. {
  47. return false;
  48. }
  49. return true;
  50. }
  51. }
  52. }