functions:other_functions
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
functions:other_functions [2023/11/24 16:19] – [$regext] emcodem | functions:other_functions [2024/01/28 10:30] (current) – benjamin | ||
---|---|---|---|
Line 108: | Line 108: | ||
* This is regular expression function. It extracts text based on recognition patterns. It uses the Perl Compatible Regular Expressions (PCRE) engine. http:// | * This is regular expression function. It extracts text based on recognition patterns. It uses the Perl Compatible Regular Expressions (PCRE) engine. http:// | ||
- | * Additional documentation of the underlying function: https:// | ||
- | * Special note about using https:// | ||
- | * To match ffastrans regex, you must set the delimiter (left of your regex) to something else than slash (/) and also remove all regex Flags (right to your regex) | ||
Usage :\\ | Usage :\\ | ||
- | $regext(input string = " | + | $regext(input string = " |
+ | |||
+ | $regext("< | ||
- | Examples :\\ | ||
- | $regext("< | ||
- | Notice that in the above examples, we use () in order to specify which part we want to have returned, e.g. the numbers of the xml attribute " | ||
$regext(" | $regext(" | ||
- | |||
- | |||
- | **Available regex Flags** as optional third parameter (default=0): | ||
- | |||
- | * 0: $STR_REGEXPARRAYMATCH | ||
- | * Default, returns only first match | ||
- | * 1: $STR_REGEXPARRAYGLOBALMATCH | ||
- | * Returns a JSON array containing all matches | ||
- | * 2: $STR_REGEXPARRAYGLOBALFULLMATCH | ||
- | * Full match is a very special and hard to use mode for experts | ||
- | |||
- | **Flags Difference: | ||
- | In this simple Example, we search for the regex " | ||
- | |||
- | No Flag:\\ | ||
- | < | ||
- | Flag 0:\\ | ||
- | < | ||
- | Notice that flag 0 is the same as specifying no flag. It returns the first found match.\\\\ | ||
- | Flag 1:\\ | ||
- | < | ||
- | Flag 2:\\ | ||
- | Flag 2 has not yet been researched | ||
- | |||
- | **Regex Modifier flags:** | ||
- | Start your regex with any of these commands to get the desired effect:\\ | ||
- | |||
- | (?i) case-insensitive | ||
- | < | ||
- | |||
- | (?s) Single Line: dot matches newline. For this Example we need to read a text (or xml file as input)\\ | ||
- | https:// | ||
- | |||
- | (?m) Multiline: ^ and $ match start and end of line\\ | ||
- | https:// | ||
---------------------- | ---------------------- | ||
Line 279: | Line 240: | ||
$lookuprep(' | $lookuprep(' | ||
joelindagreg | joelindagreg | ||
+ | |||
+ | |||
+ | ----------------------------- | ||
+ | |||
+ | ===== $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(' | ||
+ | ["1 - jack", "2 - joe", "3 - jill", "4 - jane", "5 - james", | ||
+ | |||
+ | |||
+ | $foreach(' | ||
+ | [9, 9, 9, 6, 15, -12] | ||
----------------------------- | ----------------------------- | ||
Line 296: | Line 279: | ||
[" | [" | ||
+ | ----------------------------- | ||
+ | |||
+ | ===== $stringf ===== | ||
+ | |||
+ | * This function works very much like the printf() function in C. It shares the same notation. The difference is that if you have multiple arguments you need to put them in an array. | ||
+ | |||
+ | Usage : \\ | ||
+ | |||
+ | $stringf(input string =" | ||
+ | |||
+ | |||
+ | $stringf(' | ||
+ | |||
+ | |||
+ | $stringf(' | ||
----------------------------- | ----------------------------- | ||
- | ===== $foreach | + | ===== $fsize ===== |
- | * 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 " | + | * Get file size in bytes. |
+ | Usage : \\ | ||
+ | |||
+ | $fsize(input string =" | ||
+ | |||
+ | |||
+ | $fsize(" | ||
+ | |||
+ | |||
+ | ----------------------------- | ||
+ | |||
+ | ===== $fext ===== | ||
+ | |||
+ | * Get file extension. | ||
Usage : \\ | Usage : \\ | ||
- | $foreach(input string =" | ||
- | $foreach(' | + | $fext(input string ="string/%variable%") |
- | [" | + | |
- | $foreach('["jack", " | + | $fext("D:\Replace spaces in filename.mp4" |
- | ["1 - jack", "2 - joe", "3 - jill", "4 - jane", "5 - james", | + | |
- | $foreach('[10, 11, 12, 10, 20, -6]', '%$%-%i%') {{: | + | ----------------------------- |
- | [9, 9, 9, 6, 15, -12] | + | |
+ | ===== $fname ===== | ||
+ | |||
+ | * Get file name. | ||
+ | |||
+ | Usage : \\ | ||
+ | |||
+ | $fname(input string =" | ||
+ | |||
+ | |||
+ | $fname(" | ||
----------------------------- | ----------------------------- | ||
+ | |||
+ | |||
+ | ===== $fpath ===== | ||
+ | |||
+ | * Get file path. | ||
+ | |||
+ | Usage : \\ | ||
+ | |||
+ | $fpath(input string =" | ||
+ | |||
+ | |||
+ | $fpath(" | ||
+ | |||
+ | ----------------------------- | ||
+ | |||
+ | ===== $fdrive ===== | ||
+ | |||
+ | * Get drive path. | ||
+ | |||
+ | Usage : \\ | ||
+ | |||
+ | $fdrive(input string =" | ||
+ | |||
+ | |||
+ | $fdrive(" | ||
+ | |||
+ | ----------------------------- | ||
+ | |||
+ | |||
+ | ===== $asplit ===== | ||
+ | |||
+ | * Splits an array string into a delimited string using the optional separator. Default separator is \r\n (carriage return and line feed). | ||
+ | |||
+ | Usage : \\ | ||
+ | |||
+ | $asplit(input string/ | ||
+ | |||
+ | |||
+ | $asplit(" | ||
+ | |||
+ | |||
+ | $asplit(' | ||
+ | |||
+ | jack | ||
+ | |||
+ | joe | ||
+ | |||
+ | jill | ||
+ | |||
+ | jane | ||
+ | |||
+ | james | ||
+ | |||
+ | jules | ||
+ | |||
+ | |||
+ | ----------------------------- | ||
+ | |||
+ | ===== $ffconcat ===== | ||
+ | |||
+ | * Creates a ffconcat version 1.0 compatible string for use with encoder input. | ||
+ | |||
+ | Usage : \\ | ||
+ | |||
+ | $ffconcat(input string/ | ||
+ | |||
+ | |||
+ | $ffconcat(' | ||
+ | |||
+ | ffconcat version 1.0 | ||
+ | |||
+ | file ' | ||
+ | |||
+ | file ' | ||
+ | |||
+ | file ' | ||
+ | |||
+ | |||
+ | ----------------------------- | ||
+ | |||
+ | ===== $owner ===== | ||
+ | |||
+ | * Find the domain owner of a file. | ||
+ | |||
+ | Usage : \\ | ||
+ | |||
+ | $owner(input string =" | ||
+ | |||
+ | |||
+ | $owner(" | ||
+ | |||
+ | |||
+ | ----------------------------- | ||
+ | |||
+ | |||
+ | ===== $waccess ===== | ||
+ | |||
+ | * Check if user running the ffastrans system has write access to the specified folder. | ||
+ | |||
+ | Usage : \\ | ||
+ | |||
+ | $waccess(input string =" | ||
+ | |||
+ | |||
+ | $waccess(" | ||
+ | |||
+ | |||
+ | ----------------------------- | ||
+ | |||
+ | ===== $dateweek ===== | ||
+ | |||
+ | * Finds the date (year_month_mday) of any given year, week number, week day number and week start day. | ||
+ | |||
+ | Usage : \\ | ||
+ | |||
+ | dateweek(input integer = integer/ | ||
+ | |||
+ | (find date of week no. 35, the second day of the week starting on monday) | ||
+ | $dateweek(1973, | ||
+ | |||
+ | |||
+ | ----------------------------- | ||
+ | |||
+ | ===== $timecalc ===== | ||
+ | |||
+ | * Calculates a new date/time by adding/ | ||
+ | y = year, M = month, d = day, w = week, h = hour, m = minute, s = second | ||
+ | |||
+ | Usage : \\ | ||
+ | |||
+ | $timecalc(input integer = integer/ | ||
+ | |||
+ | (add 60 days) | ||
+ | $timecalc(' | ||
+ | |||
+ | (add 3 hours) | ||
+ | $timecalc(' | ||
+ | |||
+ | |||
+ | ----------------------------- | ||
+ | |||
+ | ===== $shortcut ===== | ||
+ | |||
+ | * Parse the shortcut (Windows) or alias (MAC) and return the actual file path. | ||
+ | |||
+ | Usage : \\ | ||
+ | |||
+ | $shortcut(input string =" | ||
+ | |||
+ | $shortcut(" | ||
+ | |||
+ | ----------------------------- | ||
+ | |||
+ | |||
< | < | ||
functions/other_functions.1700842797.txt.gz · Last modified: 2023/11/24 16:19 by emcodem