User Tools

Site Tools


functions:functions_list

This is an old revision of the document!


Functions



Functions can only be used in the “Populate Variables” Processor. Using Functions you can manipulate strings or numbers, do calculations, read files, parse JSON and much more. The execution of a function typically takes < 1ms, so it is about executing quick actions that are not worth inserting a processor into your workflow.

Usage description:

 $function(input-1 = "string", input-2 = integer[, optional input-3 = "string"/integer])


  • ALL string inputs containing alphabetic characters (a-z, A-Z) must be encapsulated with single or double quotes: “my string”, '123abc', “%s_variable%”, '%i_variable%'.
  • Functions that accept numbers do not need to be encapsulated with quotes.
  • If numeric character(s) (0-9) are used in functions that accept strings then the number will be treated as a string: 123 = “123”
  • All functions can be nested (functions within functions):$replace($left(“my strings”, 6), “my”, “your”) = “your str”
  • Nested function must NOT be encapsulated with quotes.See Nested Functions

Character String Functions

$leftGet string n-characters from the left side.
$trimlTrim string n-characters from the left side.
$rightGet string n-characters from the right side.
$trimrTrim string n-characters from the right side.
$middleGet string n-characters from n-position.
$betweenGet string between two strings.
$upperForce string to upper case.
$lowerForce string to lower case.
$properCapitalizes every first letter following a non-alphanumeric character.
$replaceReplace string in string.
$regreplaceReplace string in string by regex pattern.
$alrepReplace all non-alphanumeric characters and add optional exceptions.
$leadsAdd leading character(s) to a string. If string to fill is omitted a zero (0) will be used.
$trailsAdd trailing character(s) to a string. If fill-string is omitted a zero (0) will be used.
$stripwsRemoves leading and trailing white spaces.
$stripcrlfStrips string for line feed and carriage returns.
$isdigitCheck if string is only numbers. Success returns 1, failure returns 0.
$isalphaCheck if string is only alphabetic letters. Success returns 1, failure returns 0.
$lengthRetrieves length of the string (number of characters).
$reverseReverse a string.

Mathematics Functions

$round()Round number to nearest decimal.
$roundd()Round number down to nearest integer.
$roundu()Round number up to nearest integer.
$inttotc()Convert integer to time code.
$tctosec()Convert time code to seconds.
$abs()Returns the absolute value of a number.
$log()Returns the natural logarithm of a number.
$random()Returns a random integer number between two integers.

Other Functions

$existsThis is a file function that will tell if file(s) exists.
$base64Encodes the input string as base 64.
$base64decEncodes the input UTF-8 string as terminated base64 string.
$jsonencodeConverts the input string to an JSON friendly string.
$jsongetRetrieves the value from a JSON object key. Here is an example to retrieve values from ffprobe
$jsonputPuts a value to a JSON object.
$readarrayReturns an instance from a valid array; “[data, data, etc…]”.
$regextThis is regular expression function. It extracts text based on recognition patterns.
$hexConverts a decimal integer to hexadecimal number.
$decConverts a hexadecimal number to decimal integer.
$guidReturns a random GUID/UUID.
$xxhashReturns an eight character hash for any file.
$readReads the contents of a any text file.
$urlencodeConverts the input string to an URL friendly string.
$weekReturns the week number from the date specified in the parameters. If no date is specified, the function returns the current week number.
$weekdayReturns the week day number from the date specified in the parameters. If no date is specified, the function returns the current week day number.

                                                                                                          Back to top

functions/functions_list.1623619153.txt.gz · Last modified: 2021/06/13 21:19 by steinar

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki