XPath day-of-year-from-dateTime
Overview
The day-of-year-from-dateTime()
function extracts the day in the year from a Date and time attribute so it can be used to compare to a value. Values range from 1 (January 1) to 366 (due to leap years).
Syntax
The syntax is as follows:
day-of-year-from-dateTime ( attribute [, timezone ] )
attribute
attribute
specifies the attribute to extract the day from. Attribute must be of the Date and time type.
timezone
timezone
parameter is available in Studio Pro 9.22.0 and above.
timezone
specifies the time zone to use for the extraction. This parameter is optional and defaults to the local time zone. It should be a string literal containing an IANA time zone or 'UTC'
. GMT offset time zones are not supported.
Examples
This query returns all the logs where the day in the year in DateAttribute
is 40 in the local time zone (for example, “2011-02-09” and “2012-02-09”):
//Logging.Log[day-of-year-from-dateTime(DateAttribute) = 40]
This query returns all the logs where the day in the year in DateAttribute
is 40 in the New York time zone (for example, “2011-02-09” and “2012-02-09”):
//Logging.Log[day-of-year-from-dateTime(DateAttribute, 'America/New_York') = 40]