StringsGet the length of a string: var Str s Get the substring of length 12, starting at character number 5: var Str s1 s2 As is usual in computers, the number of the first character is zero, not one. Warning: strings are encoded in UTF-8. 'len' does not return the actual number of characters, but the number of bytes in the string. Idem concerning the function of extraction of substring. Replace: var Str s1 s2 Complete to the size requested by aligning to the right or to the left: var Str s1 s2 Notes: Remove all accents and all non-ASCII symbols: var Str s1 s2 Put in upper or lower case: var Str s1 s2 Warning: the 'upper' and 'lower' functions convert only unaccented letters. Determine if the chain s1 contains the substring s2: var Str s1 s2 We also have a more powerful decomposition instruction: var Str s1 ↠ Documentation of the 'parse' function on the Pliant website In a report, we want to perform a classification on two columns, for example the 'year' column followed by the 'name' column, we can use the 'lexico' function whose property is to return a character string that preserves the order of comparison: lexico annee nom Avant 2024, la syntaxe était : lexico:annee+lexico:nom |