| | |
Constant | Affects | Used by |
---|
Versions 17 and laterBigEndian New in version 17BigEndian BigEndian | Groups values based on the big-endian format. | BufferToHexa |
ccIgnoreAccent | Comparison while ignoring the accented characters, or changes the character string into a string with no accented character. | StringCompare, StringStartsWith, StringEndsWith, StringFormat, ..SortOption StringSplit |
ccIgnoreCase | Comparison while ignoring the case of the characters in the strings to compare (uppercase/lowercase characters). | StringCompare, StringStartsWith, StringEndsWith, ..SortOption |
Versions 20 and laterccIgnoreInsideSpace New in version 20ccIgnoreInsideSpace ccIgnoreInsideSpace | Comparison while ignoring the space characters found inside the character strings to compare. Removes the space characters found inside the character string. | StringCompare, StringStartsWith, StringEndsWith, StringFormat |
ccIgnorePonctuationAndSpace | Comparison while ignoring the punctuation and the space characters. Removes the punctuation and the space characters. | StringCompare, StringStartsWith, StringEndsWith, StringFormat, ..SortOption StringSplit |
ccIgnoreSpace | Comparison while ignoring the space characters found before and after the character strings to compare. Removes the space characters before and after the character string. | StringCompare, StringStartsWith, StringEndsWith, StringFormat, ..SortOption StringSplit |
ccLexicographicOrder | Compare the character strings according to the lexicographic order (for example, the character 'é' is found between the characters 'e' and 'f). | StringCompare, ..SortOption |
ccLowCase | Switches the character string into lowercase characters. | StringFormat StringSplit |
ccNormal | Standard comparison, similar to the comparison operators such as <, <=, >, >=, =, ... | StringCompare, StringStartsWith, StringEndsWith, StringFormat, ..SortOption, StringSplit, |
ccRespectNumeric | Comparison while taking into account the numeric characters found inside the strings (in this case, "10" comes after "9"). | StringCompare |
ccUpCase | Switches the character string into uppercase characters (including the accented characters). | StringFormat StringSplit |
Versions 17 and laterctAccent New in version 17ctAccent ctAccent | Type of characters to find: Accented or diacritical character. | CharactTypeOccurrence, CharactType |
Versions 17 and laterctAlpha New in version 17ctAlpha ctAlpha | Type of characters to find: Letter. | CharactTypeOccurrence, CharactType |
Versions 17 and laterctLowercase New in version 17ctLowercase ctLowercase | Type of characters to find: Lowercase character. | CharactTypeOccurrence, CharactType |
Versions 17 and laterctNumeric New in version 17ctNumeric ctNumeric | Type of characters to find: Numeric character. | CharactTypeOccurrence, CharactType |
Versions 17 and laterctPunctuation New in version 17ctPunctuation ctPunctuation | Type of characters to find: Punctuation character. | CharactTypeOccurrence, CharactType |
Versions 17 and laterctSpace New in version 17ctSpace ctSpace | Type of characters to find: Space. | CharactTypeOccurrence, CharactType |
Versions 17 and laterctUppercase New in version 17ctUppercase ctUppercase | Type of characters to find: Uppercase character. | CharactTypeOccurrence, CharactType |
durationCenti | Format of the duration to convert: "+DHHMMSSLL" | StringToDuration, DurationToString |
durationMilli | Format of the duration to convert: "+DHHMMSSLLL" | StringToDuration, DurationToString |
firstRank | Starts browsing the sub-strings separated by the specified separator from the beginning of the string. | ExtractString, PositionOccurrence |
FromBeginning | Search performed from the beginning of the string. | ExtractString, StringIncrement, Position, PositionOccurrence, CommonLength |
FromEnd | Search performed from the end of the string. | ExtractString, StringIncrement, Position, PositionOccurrence, CommonLength |
IgnoreCase | Searches while ignoring the case (uppercase/lowercase characters). | StringCount, Position, PositionOccurrence, Replace, CommonLength DocSeek, DocReplace |
Versions 22 and laterjsonFormatting New in version 22jsonFormatting jsonFormatting | Formats JSON: Carriage return and indentation. | VariantToJSON |
lastRank | Starts browsing the sub-strings separated by the specified separator from the end of the string. | ExtractString, PositionOccurrence |
nextRank | Continues a browse started by firstRank. | ExtractString, PositionOccurrence |
Versions 23 and laterNoGrouping New in version 23NoGrouping NoGrouping | Number of bytes displayed per word: no grouping will be done. All hexadecimal codes will be pasted. Example: 61002345A1. | BufferToHexa |
Versions 23 and laterNoLine New in version 23NoLine NoLine | Number of bytes displayed before going to the next line: all bytes will be positioned on the same line. | BufferToHexa |
Versions 18 and laternumberOfCharactersToDelete New in version 18numberOfCharactersToDelete numberOfCharactersToDelete | Type of truncation: the number of characters to truncate is specified. | Truncate |
Versions 18 and laternumberOfCharactersToStore New in version 18numberOfCharactersToStore numberOfCharactersToStore | Type of truncation: the number of characters of the truncated string is specififed. | Truncate |
previousRank | Continues a browse started by lastRank. | ExtractString, PositionOccurrence |
sizeB | Size converted into bytes. | LengthToString |
sizeGB | Size converted into gigabytes. | LengthToString |
sizeKB | Size converted into kilobytes. | LengthToString |
sizeMB | Size converted into megabytes. | LengthToString |
sizeTB | Size converted into terabytes. | LengthToString |
sortDefault | Sort while ignoring the case and the accented characters and while taking the space characters into account. | ..SortOption |
sortWithoutFunctionGxxx | Sort while ignoring the elements such as gImage, gLink, ... By default, these elements are taken into account by the sort performed in the columns found in the tables and in the list boxes. | ..SortOption |
srASCIIZAddress | The format of the string to retrieve is an integer containing the address of a string in ASCIIZ format. | StringRetrieve |
srUNICODEAddress | The format of the string to retrieve is an integer containing the address of a string in Unicode format. | StringRetrieve |
Versions 20 and latersscAll New in version 20sscAll sscAll | Deletes all the space characters or all the specified characters found in the initial string. Equivalent to sscRight + sscLeft + sscInside. | NoCharacter, NoSpace |
Versions 20 and latersscInside New in version 20sscInside sscInside | Deletes the space characters or the specified characters found inside the initial string. | NoCharacter, NoSpace |
Versions 20 and latersscLeft New in version 20sscLeft sscLeft | Deletes the space characters or the specified characters found on the left of the initial string. | NoCharacter, NoSpace |
Versions 20 and latersscOutside New in version 20sscOutside sscOutside | Deletes the space characters or the specified characters found outside the initial string. Equivalent to sscRight + sscLeft. | NoCharacter, NoSpace |
Versions 20 and latersscRight New in version 20sscRight sscRight | Deletes the space characters or the specified characters found on the right of the initial string. | NoCharacter, NoSpace |
Versions 19 and laterurlDomain New in version 19urlDomain urlDomain | URL section to extract: Domain of the URL. | URLExtractPath |
Versions 19 and laterurlFragment New in version 19urlFragment urlFragment | URL section to extract: Fragment of the URL (anchor in a document). | URLExtractPath |
Versions 19 and laterurlPassword New in version 19urlPassword urlPassword | URL section to extract: Password of the user in the URL. | URLExtractPath |
Versions 19 and laterurlPort New in version 19urlPort urlPort | URL section to extract: Port of the URL. | URLExtractPath |
Versions 19 and laterurlProtocol New in version 19urlProtocol urlProtocol | URL section to extract: Protocol of the URL. | URLExtractPath |
Versions 19 and laterurlRequest New in version 19urlRequest urlRequest | URL section to extract: Request of the URL. | URLExtractPath |
Versions 19 and laterurlResourceExtension New in version 19urlResourceExtension urlResourceExtension | URL section to extract: Extension of the URL resource. | URLExtractPath |
Versions 19 and laterurlResourceName New in version 19urlResourceName urlResourceName | URL section to extract: Name of the URL resource. | URLExtractPath |
Versions 19 and laterurlResourcePath New in version 19urlResourcePath urlResourcePath | URL section to extract: Path of the URL resource. | URLExtractPath |
Versions 19 and laterurlUser New in version 19urlUser urlUser | URL section to extract: Name of the user in the URL. | URLExtractPath |
WholeWord | Searches for a whole word, which means enclosed in punctuation characters or in space characters. | StringCount, Position, PositionOccurrence, Replace, CommonLength DocSeek, DocReplace |
WithDuplicates | Allows the duplicates in an associative array. | Associative array |
WithoutDuplicates | Does not allow the duplicates in an associative array. | Associative array |