1:身份证格式:自定义->输入###################2:日期格式: Text(A2:,"yyyy-mm-dd")3:取消公式:ctrl+c .ctrl+v会出现一个小工具,下拉选择粘贴值(仅有值)4:INDEX函数 主要功能:返回列表或数组中的元素值,此元素由行序号和列序号的索引.....
分类:
其他好文 时间:
2014-07-16 20:01:26
阅读次数:
186
方法一:Convert.ToDateTime(string)string格式有要求,必须是yyyy-MM-dd hh:mm:ss================================================方法二:Convert.ToDateTime(string, IFormat...
分类:
其他好文 时间:
2014-07-16 19:04:16
阅读次数:
160
select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from goods tinsert into goods (id,createdate) values ('232',to_date('2014-05-14 10:05:33','yyyy-mm-dd ...
分类:
数据库 时间:
2014-07-14 23:39:52
阅读次数:
219
格式一:yyyy-MM-dd HH:mm:ssDate.prototype.format = function(format) { /* * eg:format="yyyy-MM-dd hh:mm:ss"; */ var o = { "M+"...
分类:
Web程序 时间:
2014-07-14 21:18:54
阅读次数:
226
1、java、android中获取当前时间 this.sdf = new SimpleDateFormat("yyyy/MM/dd-hh:mm:ss", Locale.CHINA); String time = sdf.format(new Date(System.currentTimeMil...
分类:
其他好文 时间:
2014-07-14 19:49:56
阅读次数:
184
在做依据日期来检索的时候普通的格式化会出错,试了好多种仅仅有一种可行SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");String time = "lostTime:["+sdf.format(new Da...
分类:
其他好文 时间:
2014-07-12 08:32:03
阅读次数:
164
public static String getDateBefore(int day) { SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Calendar now = Calendar.getInstanc.....
分类:
编程语言 时间:
2014-07-11 21:38:37
阅读次数:
258
/*** 时间对象的格式化*/Date.prototype.format = function(format){/** format="yyyy-MM-dd hh:mm:ss";*/var o = {"M+" : this.getMonth() + 1,"d+" : this.getDate(),"...
分类:
Web程序 时间:
2014-07-09 20:18:14
阅读次数:
211
* 日期工具类-xw素材网整理 * 默认使用 "yyyy-MM-dd HH:mm:ss" 格式化日期 * @author xw素材网public final class DateUtils {* 英文简写(默认)如:2010-12-01public static String FORMAT_SHO....
分类:
编程语言 时间:
2014-07-09 17:38:25
阅读次数:
223
这里我总结了java中日期的处理方法
/**
* 按照yyyy-MM-dd HH:mm:ss格式化日期
* 可根据需要定制
* @param date
* @return
*/
public static String format(Date date) {
sdf.applyPattern("yyyy-MM-dd HH:mm:ss");
return s...
分类:
编程语言 时间:
2014-07-06 12:08:24
阅读次数:
236