常用日期格式

1.    (get-date -Format ‘R‘) -replace ‘(?i)[a-z]{3},\s([0-9]{2})\s([a-z]{3})\s([0-9]{4})\s.*‘, ‘$2-$1-$3‘

May-19-2014

2.    (get-date -Format ‘R‘).substring(5,11) -replace ‘\s‘, ‘-‘

19-May-2014

3.    (get-date -Format ‘R‘).split(‘ ‘)[1,2,3] -join ‘-‘

19-May-2014

4.    (get-date).Tostring("dd-MMM-yyyy")

19-5月-2014

$date= Get-Date

foreach ($format in "d","D","f","F","g","G","m","r","s","t","T","u","U","y","dddd, MMMM dd yyyy","M/yy","dd-MM-yy") {

"DATE with $format:{0}" -f $date.ToString($format)

}

DATE with d : 2015/5/6

DATE with D : 2015年5月6日

DATE with f : 2015年5月6日 16:42

DATE with F : 2015年5月6日 16:42:06

DATE with g : 2015/5/6 16:42

DATE with G : 2015/5/6 16:42:06

DATE with m : 5月6日

DATE with r : Wed, 06 May 2015 16:42:06 GMT

DATE with s : 2015-05-06T16:42:06

DATE with t : 16:42

DATE with T : 16:42:06

DATE with u : 2015-05-06 16:42:06Z

DATE with U : 2015年5月6日 8:42:06

DATE with y : 2015年5月

DATE with dddd, MMMM dd yyyy : 星期三, 五月 06 2015

DATE with M/yy : 5/15

DATE with dd-MM-yy : 06-05-15

时间: 2024-10-11 13:16:11

常用日期格式的相关文章

3月30日 sql常用日期格式转换

格式: CONVERT(data_type,expression[,style]) 说明: 此样式一般在时间类型(datetime,smalldatetime)与字符串类型(nchar,nvarchar,char,varchar) 相互转换的时候才用到. 例子: SELECT CONVERT(varchar(30),getdate(),101) now 结果为: now --------------------------------------- |03/30/2015  ==========

C#常用日期格式处理转换[C#日期格式转换大全

DateTime dt = DateTime.Now; Label1.Text = dt.ToString();//2005-11-5 13:21:25 Label2.Text = dt.ToFileTime().ToString();//127756416859912816 Label3.Text =dt.ToFileTimeUtc().ToString();//127756704859912816 Label4.Text =dt.ToLocalTime().ToString();//2005

在SQL Server中 获取日期、日期格式转换

--常用日期转换参数: PRINT CONVERT(varchar, getdate(), 120 ) 2016-07-20 16:09:01 PRINT replace(replace(replace(CONVERT(varchar, getdate(), 120 ),'-',''),' ',''),':','') 20040912110608 PRINT CONVERT(varchar(12) , getdate(), 111 ) 2004/09/12 PRINT CONVERT(varch

ABAP - 日期格式转换 & ABAP常用日期处理函数

ABAP - 日期格式转换 现在提供以下一些日期格式转换的函数: Below are several FMs which can be used to convert date format. 1. CONVERSION_EXIT_IDATE_OUTPUT INPUT:      20080203 OUTPUT:   03FEB2008 2. CONVERT_DATE_TO_EXTERNAL INPUT:      20080203 OUTPUT:   02/03/2008    "Accord

★★★【卡法 常用js库】: js汇合 表单验证 cookie设置 日期格式 电话手机号码 email 整数 小数 金额 检查参数长度

[卡法 常用js库]: js汇合 表单验证  cookie设置  日期格式  电话手机号码  email  整数  小数  金额   检查参数长度 // +---------------------------------------------------------------------- // | sunqiang // +---------------------------------------------------------------------- // | Copyrig

ios日期格式转换

转自:http://blog.csdn.net/l_ch_g/article/details/8217725 1.如何如何将一个字符串如“ 20110826134106”装化为任意的日期时间格式,下面列举两种类型: NSString* string = @"20110826134106"; NSDateFormatter *inputFormatter = [[[NSDateFormatter alloc] init] autorelease]; [inputFormatter set

SqlServer将日期格式DateTime转换成varchar类型

Select CONVERT(varchar(100), GETDATE(), 0): 05 16 2006 10:57AM Select CONVERT(varchar(100), GETDATE(), 1): 05/16/06 Select CONVERT(varchar(100), GETDATE(), 2): 06.05.16 Select CONVERT(varchar(100), GETDATE(), 3): 16/05/06 Select CONVERT(varchar(100),

方法:C#格式化数据 日期格式设置示例 Format使用 DataFormatString使用

DataFormatString="{0:格式字符串}" 在DataFormatString 中的 {0} 表示数据本身,而在冒号后面的格式字符串代表所们希望数据显示的格式: 数字.货币格式:在指定的格式符号后可以指定小数所要显示的位数.例如原来的数据为「1.56」,若格式设定为 {0:N1},则输出为「1.5」.其常用的数值格式如下表所示: 格式字符串 输入 结果"{0:C}" 12345.6789 $12,345.68"{0:C}" -123

C# 常用日期函数

我想知道取的时期是几月.几日,然后做一些统计,上网找了一些方法. --DateTime 数字型 System.DateTime currentTime=new System.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取当前年 int 年=currentTime.Year; 1.3 取当前月 int 月=currentTime.Month; 1.4 取当前日 int 日=currentTime.Day; 1.5 取