Difference between revisions of "DateTime parse"

From Catglobe Wiki
Jump to: navigation, search
(Example)
 
(2 intermediate revisions by one other user not shown)
Line 91: Line 91:
 
|}
 
|}
  
===Example===
+
=== Example ===
  
<source lang="javascript">
+
''array a = DateTime_parse("2009/4/5","yyyy/MM/dd"); ''
  
array a = DateTime_parse(“2009/4/5”,”yyyy/MM/dd”); print(a);
+
''print(a); //Result: {2009,4,5,0,0,0,0,14,65}''
  
// or
+
''array b = DateTime_parse("2009/4/5 5:10:24","yyyy/MM/dd hh:mm:ss"); ''
  
array a = DateTime_parse(“2009/4/5 0:0:0”,”yyyy/MM/dd hh:mm:ss”); print(a);
+
''print(b); //Result: {2009,4,5,5,10,24,0,14,65}''
  
// or
+
''array c = DateTime_parse("2009-4-5 23:59:59","yyyy-MM-dd"); ''
  
array a = DateTime_parse(“2009/4/5 0:0:0”,”yyyy/MM/dd”); print(a);
+
''print(c); //Result: {2009,4,5,23,59,59,0,14,65}''
  
// or
+
''array d = DateTime_parse("2009/4/5","yyyy/MM/dd hh:mm:ss"); ''
  
array a = DateTime_parse(“2009/4/5”,”yyyy/MM/dd hh:mm:ss”); print(a);
+
''print(d); //Result: {2009,4,5,0,0,0,0,14,65}''
  
//Repeat with seperator char -
 
 
</source>
 
 
__NOTOC__
 
__NOTOC__
<!-- imported from file: 7546.htm-->
 

Latest revision as of 11:22, 21 December 2011


DateTime_parse

Return datetime after parsing

Syntax

DateTime_parse(rawDatetime, format);

Arguments

  • rawDatetime: is string
  • format: is string

Return value

An array, in which there are 9 items:

Index

Data type

Value

DateTime_Year

number

Value parsed from date time string

DateTime_Month

number

Value parsed from date time string

DateTime_Day

number

Value parsed from date time string

DateTime_Hour

number

Value parsed from date time string) (0 if date time string doesn't have it)

DateTime_Minute

number

Value parsed from date time string) (0 if date time string doesn't have it)

DateTime_Second

number

Value parsed from date time string) (0 if date time string doesn't have it)

DateTime_Millisecond

number

default 0

DateTime_Week

number

Depend on year, day, month

DateTime_TimeZone

number

Login user's timezone

Example

array a = DateTime_parse("2009/4/5","yyyy/MM/dd");

print(a); //Result: {2009,4,5,0,0,0,0,14,65}

array b = DateTime_parse("2009/4/5 5:10:24","yyyy/MM/dd hh:mm:ss");

print(b); //Result: {2009,4,5,5,10,24,0,14,65}

array c = DateTime_parse("2009-4-5 23:59:59","yyyy-MM-dd");

print(c); //Result: {2009,4,5,23,59,59,0,14,65}

array d = DateTime_parse("2009/4/5","yyyy/MM/dd hh:mm:ss");

print(d); //Result: {2009,4,5,0,0,0,0,14,65}