functions:character_string_functions
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
functions:character_string_functions [2022/02/20 20:10] – benjamin | functions:character_string_functions [2022/02/20 20:55] (current) – benjamin | ||
---|---|---|---|
Line 4: | Line 4: | ||
There are 3 groups of functions :\\ | There are 3 groups of functions :\\ | ||
- | -[[functions: | + | -**Character |
- | -[[functions: | + | -[[functions: |
- | -**Other functions** | + | -[[functions: |
------ | ------ | ||
- | ====== Other Functions ====== | + | ===== Character string functions |
- | ===== $exists ===== | + | * ALL string inputs containing alphabetic characters (a-z, A-Z) must be encapsulated with single or double quotes.\\ |
+ | * If numeric character(s) (0-9) are used in functions that accept strings then the number will be treated as a string.\\ | ||
+ | *All functions can be nested ([[character_string_functions# | ||
- | * This is a file function | + | Usage description : $function(input-1 = " |
- | Usage:\\ | + | * Escaping Doublequotes: |
- | $exists(input | + | * your string |
+ | * in a function, you need to use it this way: ["this is my "" | ||
+ | * as you see, the string was wrapped into double quotes, just as any string inside functions. Additionally the real doublequotes in the string just have been doubled. | ||
- | $exists("C: | + | *** If you want to read and store an entire text file (xml, txt, etc), see [[other_functions# |
+ | ===== $left vs $triml ===== | ||
- | $exists(" | + | |
+ | *$triml : Trim string n-characters from the left side. | ||
- | %%$exists("\\NAS\MOVIES\ORIGINAL\FILM1.MXF",1 ,1)%% {{: | + | Usages:\\ |
- | (First ",1" | + | $left(input string = "string/ |
+ | $triml(input string = "string/ | ||
- | %%$exists(" | ||
- | ", | ||
- | ", | ||
- | ----------------------------- | + | {{: |
- | ===== $base64 | + | ------ |
- | * Encodes the input UTF-8 string as terminated base64 string. | + | ===== $right vs $trimr |
- | Usage:\\ | + | *$right |
+ | *$trimr : Trim string n-characters from the right side. | ||
- | $base64(input string =" | + | Usages:\\ |
+ | $right(input string = " | ||
+ | $trimr(input string = " | ||
- | $base64(" | + | {{: |
+ | ------ | ||
+ | ===== $middle vs $between ===== | ||
+ | *$middle : Get string n-characters from n-position. | ||
+ | *$between: Get string between two strings. | ||
- | ------- | + | Usages:\\ |
- | ===== $base64dec ===== | + | $middle(input string |
+ | $between(input string | ||
- | * Decodes the input base 64 encoded string to a UTF-8 string. | ||
+ | {{: | ||
+ | ------ | ||
- | Usage :\\ | + | ===== $upper vs $lower and $proper ===== |
- | $base64dec(input string | + | |
- | $base64dec(" | + | *$upper : Force string to upper case. |
+ | *$lower | ||
+ | *$proper: Capitalizes every first letter following a non-alphanumeric character. | ||
- | |||
- | |||
- | --------------------------- | ||
- | ===== $jsonencode, | ||
- | |||
- | * $jsonencode : Converts the input string to an JSON friendly string. | ||
- | < | ||
- | This can be used in order to produce a JSON string for further automatic processing, e.g. send a POST request to some 3rdparty API using the HTTP Request processor. Or to write a JSON File using the Write File processor.</ | ||
- | * $jsonget : Retrieves the value from a JSON object key. The first argumenst accept a string or a variable representing a valid JSON string. In the second section you refer to the object/ | ||
- | * $jsonput : Puts a value to a JSON object. The first arguments accept a string or a variable representing a valid JSON string. If and empty string is used FFAStrans will create a new json object. The second argument refer to the object/ | ||
- | |||
- | **Understanding FFAStrans JSON functions** : \\ | ||
- | {{: | ||
- | \\ | ||
- | {{: | ||
Usages:\\ | Usages:\\ | ||
- | $jsonencode(input string = " | + | $upper(input string = " |
- | $jsonget(input string = " | + | $lower(input string = " |
- | $jsonput(input string =" | + | $proper(input string = " |
- | $jsonencode(" | + | {{: |
+ | ----- | ||
+ | ===== $replace and $alrep ===== | ||
- | $jsonencode(' | + | *$replace : Replace string in string. If "type" |
+ | *$alrep | ||
- | $jsonget('{"things":{"myStuff":"some other stuff"}}', "things.myStuff" | + | Usage:\\ |
+ | $replace(input string = "string/ | ||
+ | $alrep(input string = "string/ | ||
- | ==== jsonget Usage Example to retrieve values from ffprobe: ==== | ||
- | $jsonget(' | ||
- | | ||
- | You can use online tools to generate the selection string (streams[1].format_name) like this: | + | {{:functions:replace.jpg? |
- | http:// | + | |
- | Best Practice is to use a Write File Processor and write %s_info_ffprobe% to a file. This gives you the full JSON structure of your file. You can use the resulting JSON in above mentioned online tools. | + | |
+ | {{: | ||
+ | ----- | ||
+ | ===== $regreplace ===== | ||
- | ------------------------ | + | *$regreplace : Replace string |
- | ===== $readarray ===== | + | |
- | + | ||
- | * Returns an instance from a valid array which must be in the form of " | + | |
- | This can be used in combination with another processor which generates JSON on output, for example loudness filter or in combination again with a HTTP Get processor that receives JSON data from a 3rdparty API. | + | |
Usage:\\ | Usage:\\ | ||
- | $readarray(input string = " | + | $regreplace(input string |
- | $readarray(" | + | {{: |
+ | ------------- | ||
+ | ===== $leads vs $trails ===== | ||
- | $readarray(' | + | *$leads : Add leading character(s) to a string. If string to fill is omitted a zero (0) will be used. |
+ | *$trails | ||
- | ------------------------ | + | Usage:\\ |
- | ===== $regext ===== | + | $leads(input string |
+ | $trails(input string | ||
- | * This is regular expression function. It extracts text based on recognition patterns. It uses the Perl Compatible Regular Expressions (PCRE) engine. http://www.pcre.org/ | + | {{:functions: |
+ | -------- | ||
- | Usage :\\ | + | ===== $stripws and $stripcrlf ===== |
- | $regext(input string | + | |
- | $regext("< | + | *$stripws |
+ | *$stripcrlf : Removes carriage returns and line feeds from string. | ||
- | $regext("TVShow_EP0013.mxf", "/(EP\d{4})/" | + | Usage:\\ |
+ | $stripws(input string = "string/ | ||
+ | $stripcrlf(input string = "string/%variable%")\\ | ||
- | ---------------------- | + | {{: |
+ | ------ | ||
- | ===== $hex and $dec ===== | + | ===== $isdigit |
- | | + | |
- | * $dec : Converts a hexadecimal number to decimal integer. Function accepts both quoted and unquoted input. | + | *$isalpha |
- | Usages : \\ | + | |
- | $hex(input integer = integer/ | + | |
- | $dec(input string/ | + | |
+ | Usage:\\ | ||
+ | $isdigit(input string = " | ||
+ | $isalpha(input string = " | ||
- | $hex(8) | + | {{: |
- | $hex(15) | + | ------- |
- | $dec(8) {{: | + | ===== $length and $reverse ===== |
- | < | + | |
- | $dec(" | + | |
- | -------------------------- | + | *$length |
+ | *$reverse | ||
- | ===== $guid ===== | + | Usage:\\ |
- | + | $length(input string = " | |
- | * Returns a random GUID/ | + | $reverse(input string = " |
- | + | ||
- | Usage : \\ | + | |
- | $guid() | + | |
- | + | ||
- | $guid() | + | |
- | + | ||
- | -------------------------- | + | |
- | + | ||
- | ===== $xxhash ===== | + | |
- | + | ||
- | * Returns an eight character hash for any file. Must include full path. The hash is created using Yann Collet' | + | |
- | + | ||
- | Usage : \\ | + | |
- | $xxhash(input string = " | + | |
- | + | ||
- | $xxhash(" | + | |
- | + | ||
- | + | ||
- | ------------------------------------------- | + | |
- | + | ||
- | ===== $read ===== | + | |
- | + | ||
- | * Reads the contents of any file. Function supports all kinds of files, not just text based. | + | |
- | + | ||
- | Usage : \\ | + | |
- | $read(input string = " | + | |
- | + | ||
- | $read(" | + | |
- | + | ||
- | ----------------------------- | + | |
- | + | ||
- | ===== $urlencode ===== | + | |
- | + | ||
- | * Converts the input string to an URL friendly string. | + | |
- | + | ||
- | Usage : \\ | + | |
- | $urlencode(input string = " | + | |
- | + | ||
- | $urlencode(" | + | |
- | | + | |
- | + | ||
- | ----------------------------- | + | |
- | + | ||
- | ===== $week ===== | + | |
- | + | ||
- | * Returns the week number from the date specified in the parameters. If no date is specified, the function returns the current week number. | + | |
- | + | ||
- | + | ||
- | Usage : \\ | + | |
- | $week([input number=YEAR/" | + | |
- | + | ||
- | + | ||
- | $week(2020, 10, 15) {{: | + | |
- | 42 | + | |
- | + | ||
- | < | + | |
- | A week goes from Monday to Sunday. | + | |
- | </ | + | |
- | ----------------------------- | + | |
- | + | ||
- | ===== $weekday ===== | + | |
- | + | ||
- | * Returns the week day number from the date specified in the parameters. If no date is specified, the function returns the current week day number. | + | |
- | + | ||
- | + | ||
- | Usage : \\ | + | |
- | $weekday([input number=YEAR/" | + | |
- | + | ||
- | + | ||
- | $weekday(2020, | + | |
- | 5 | + | |
- | + | ||
- | < | + | |
- | The number 1 is Sunday. Monday is 2, Tuesday is 3, etc. | + | |
- | </ | + | |
- | ------------------------------- | + | |
- | + | ||
- | ===== $lookup ===== | + | |
- | + | ||
- | * Loopup table for mapping data to other data. The function will only operate on array formated strings. | + | |
- | + | ||
- | Usage : \\ | + | |
- | $lookup(input array =" | + | |
- | + | ||
- | + | ||
- | $lookup(' | + | |
- | bill | + | |
- | + | ||
- | ----------------------------- | + | |
- | + | ||
- | ===== $lookuprep ===== | + | |
- | + | ||
- | * Loopup table for replacing strings with strings from lookup tables. | + | |
- | + | ||
- | + | ||
- | Usage : \\ | + | |
- | $lookuprep(input array =" | + | |
- | + | ||
- | + | ||
- | $lookuprep(' | + | |
- | joelindagreg | + | |
- | + | ||
- | ----------------------------- | + | |
- | + | ||
- | ===== $sort ===== | + | |
- | + | ||
- | * Sorts an array formated string or a regular string. String sorting use crlf as base separator but a custom separator can be specified. | + | |
- | + | ||
- | + | ||
- | Usage : \\ | + | |
- | $sort(input string/ | + | |
- | + | ||
- | $sort(" | + | |
- | [2, | + | |
- | + | ||
- | $sort(' | + | |
- | [" | + | |
- | + | ||
- | ----------------------------- | + | |
- | + | ||
- | ===== $count ===== | + | |
- | + | ||
- | * Counts the occurrences of any string in a string. | + | |
- | + | ||
- | + | ||
- | Usage : \\ | + | |
- | $count(input string =" | + | |
- | + | ||
- | + | ||
- | $count(' | + | |
- | 3 | + | |
- | + | ||
- | ----------------------------- | + | |
- | + | ||
- | ===== $foreach ===== | + | |
- | + | ||
- | * This function will iterate and perform the desired operation on each data value. The result of each iteration will be put back into the array and presented as the new resulting array. Please note that the special keyword " | + | |
- | + | ||
- | + | ||
- | Usage : \\ | + | |
- | $foreach(input string =" | + | |
- | + | ||
- | $foreach(' | + | |
- | [" | + | |
+ | {{: | ||
+ | ------- | ||
- | $foreach(' | + | ===== Nested Functions ===== |
- | ["1 - jack", "2 - joe", "3 - jill", "4 - jane", "5 - james", | + | |
+ | All functions can be nested (functions within functions). | ||
- | $foreach('[10, 11, 12, 10, 20, -6]', ' | + | __Example 1__: |
- | [9, 9, 9, 6, 15, -12] | + | $replace($left(" |
+ | __Example 2__: | ||
+ | $upper($triml($trimr(" | ||
- | ----------------------------- | + | ------------------------------------------ |
- | < | + | |
+ | < | ||
functions/character_string_functions.1645387855.txt.gz · Last modified: 2022/02/20 20:10 by benjamin