string
String Methods
year(timezone=[string], locale=[string])
Provides the BIF and member functions for all time unit request with no arguments
Arguments:
timezone
string
false
null
locale
string
false
null
quarter(timezone=[string], locale=[string])
Provides the BIF and member functions for all time unit request with no arguments
Arguments:
timezone
string
false
null
locale
string
false
null
month(timezone=[string], locale=[string])
Provides the BIF and member functions for all time unit request with no arguments
Arguments:
timezone
string
false
null
locale
string
false
null
monthAsString(timezone=[string], locale=[string])
Provides the BIF and member functions for all time unit request with no arguments
Arguments:
timezone
string
false
null
locale
string
false
null
monthShortAsString(timezone=[string], locale=[string])
Provides the BIF and member functions for all time unit request with no arguments
Arguments:
timezone
string
false
null
locale
string
false
null
day(timezone=[string], locale=[string])
Provides the BIF and member functions for all time unit request with no arguments
Arguments:
timezone
string
false
null
locale
string
false
null
dayOfWeek(timezone=[string], locale=[string])
Provides the BIF and member functions for all time unit request with no arguments
Arguments:
timezone
string
false
null
locale
string
false
null
dayOfWeekAsString(timezone=[string], locale=[string])
Provides the BIF and member functions for all time unit request with no arguments
Arguments:
timezone
string
false
null
locale
string
false
null
dayOfWeekShortAsString(timezone=[string], locale=[string])
Provides the BIF and member functions for all time unit request with no arguments
Arguments:
timezone
string
false
null
locale
string
false
null
daysInMonth(timezone=[string], locale=[string])
Provides the BIF and member functions for all time unit request with no arguments
Arguments:
timezone
string
false
null
locale
string
false
null
daysInYear(timezone=[string], locale=[string])
Provides the BIF and member functions for all time unit request with no arguments
Arguments:
timezone
string
false
null
locale
string
false
null
dayOfYear(timezone=[string], locale=[string])
Provides the BIF and member functions for all time unit request with no arguments
Arguments:
timezone
string
false
null
locale
string
false
null
firstDayOfMonth(timezone=[string], locale=[string])
Provides the BIF and member functions for all time unit request with no arguments
Arguments:
timezone
string
false
null
locale
string
false
null
week(timezone=[string], locale=[string])
Provides the BIF and member functions for all time unit request with no arguments
Arguments:
timezone
string
false
null
locale
string
false
null
hour(timezone=[string], locale=[string])
Provides the BIF and member functions for all time unit request with no arguments
Arguments:
timezone
string
false
null
locale
string
false
null
minute(timezone=[string], locale=[string])
Provides the BIF and member functions for all time unit request with no arguments
Arguments:
timezone
string
false
null
locale
string
false
null
second(timezone=[string], locale=[string])
Provides the BIF and member functions for all time unit request with no arguments
Arguments:
timezone
string
false
null
locale
string
false
null
millisecond(timezone=[string], locale=[string])
Provides the BIF and member functions for all time unit request with no arguments
Arguments:
timezone
string
false
null
locale
string
false
null
nanosecond(timezone=[string], locale=[string])
Provides the BIF and member functions for all time unit request with no arguments
Arguments:
timezone
string
false
null
locale
string
false
null
offset(timezone=[string], locale=[string])
Provides the BIF and member functions for all time unit request with no arguments
Arguments:
timezone
string
false
null
locale
string
false
null
timezone(timezone=[string], locale=[string])
Provides the BIF and member functions for all time unit request with no arguments
Arguments:
timezone
string
false
null
locale
string
false
null
getnumericdate(timezone=[string], locale=[string])
Provides the BIF and member functions for all time unit request with no arguments
Arguments:
timezone
string
false
null
locale
string
false
null
getTime(timezone=[string], locale=[string])
Provides the BIF and member functions for all time unit request with no arguments
Arguments:
timezone
string
false
null
locale
string
false
null
dateFormat(mask=[string], timezone=[string], locale=[string])
Formats a datetime, date or time
Arguments:
mask
string
false
null
timezone
string
false
null
locale
string
false
null
timeFormat(mask=[string], timezone=[string], locale=[string])
Formats a datetime, date or time
Arguments:
mask
string
false
null
timezone
string
false
null
locale
string
false
null
dateTimeFormat(mask=[string], timezone=[string], locale=[string])
Formats a datetime, date or time
Arguments:
mask
string
false
null
timezone
string
false
null
locale
string
false
null
parseDateTime(format=[string], timezone=[string], locale=[string])
Parses a datetime string or object
Arguments:
format
string
false
null
timezone
string
false
null
locale
string
false
null
toDateTime(format=[string], timezone=[string], locale=[string])
Parses a datetime string or object
Arguments:
format
string
false
null
timezone
string
false
null
locale
string
false
null
hash(algorithm=[string], encoding=[string], numIterations=[integer])
Creates an algorithmic hash of an object
Arguments:
algorithm
string
false
MD5
encoding
string
false
utf-8
numIterations
integer
false
1
hmac(key=[any], algorithm=[string], encoding=[string], numIterations=[integer])
Creates an algorithmic hash of an object
Arguments:
key
any
true
null
algorithm
string
false
HmacMD5
encoding
string
false
utf-8
numIterations
integer
false
1
inputBaseN(radix=[integer])
Converts a string, using the base specified by radix, to an integer.
Arguments:
radix
integer
true
null
xMLFormat(escapeChars=[boolean])
Formats a string so that special XML characters can be used as text in XML
Arguments:
escapeChars
boolean
false
false
uRLEncodedFormat()
Generates a URL-encoded string.
For example, it replaces spaces with %20, and non-alphanumeric characters with equivalent hexadecimal escape sequences. Passes arbitrary strings within a URL. *
listSome(callback=[function:Predicate], delimiter=[string], includeEmptyFields=[boolean], multiCharacterDelimiter=[boolean], parallel=[boolean], maxThreads=[integer])
Tests whether any item in a list meets the specified callback
Arguments:
callback
function:Predicate
true
null
delimiter
string
false
,
includeEmptyFields
boolean
false
false
multiCharacterDelimiter
boolean
false
true
parallel
boolean
false
false
maxThreads
integer
false
null
listReduceRight(callback=[function:BiFunction], initialValue=[any], delimiter=[string], includeEmptyFields=[boolean], multiCharacterDelimiter=[boolean])
Run the provided udf over a reversed delimited list to reduce the values to a single output
Arguments:
callback
function:BiFunction
true
null
initialValue
any
false
null
delimiter
string
false
,
includeEmptyFields
boolean
false
false
multiCharacterDelimiter
boolean
false
true
listPrepend(value=[string], delimiter=[string], includeEmptyFields=[boolean], multiCharacterDelimiter=[boolean])
Filters a delimted list and returns the values from the callback test
Arguments:
value
string
true
null
delimiter
string
false
,
includeEmptyFields
boolean
false
false
multiCharacterDelimiter
boolean
false
true