STR.cs
上传用户:chinapurv
上传日期:2014-03-12
资源大小:4870k
文件大小:1k
- using System;
- namespace 图书管理系统
- {
- /// <summary>
- /// STR 的摘要说明。
- /// </summary>
- public class STR
- {
- public STR()
- {
- //
- // TODO: 在此处添加构造函数逻辑
- //
- }
- public static string add0(string str)
- {
- if(str.Length==0)
- {
- return "00";
- }
- else if(str.Length==1)
- {
- str="0"+str;
- return str;
- }
- else return str;
- }
- public static bool IsDate(string str)
- {
- try
- {
- int.Parse(str);
- }
- catch
- {
- return false;
- }
- if(str.Length!=8) return false;
- string temp;
- temp=str.Substring(0,4)+"-"+Convert.ToString(int.Parse(str.Substring(4,2)))+"-"+Convert.ToString(int.Parse(str.Substring(6,2)));
- try
- {
- System.DateTime.Parse(temp);
- }
- catch
- {
- return false;
- }
- return true;
- }
- }
- }