• Downloading & Installing
• Running
• Examples
Cryptography
• hashSHA256
• hmacSHA256
• hashSHA512
• hmacSHA512
• hashMD5
• hmacMD5
File System
• fileExists
• fileRead
• fileWrite
• folderExists
• unzip
• zip
Networking
• curlExecute
• nsapiExecute
Operating System
• shellExecute
Text Encoding
• base64Decode
• base64Encode
Utilities
• abort / halt / quit
• info
• infoRefresh
• sleep
• stringIndent
• uuidGenerate
Returns the specified string indented (i.e. "left-padded") with the specified number of spaces.
writeln( "Flush-left." ); writeln( stringIndent( "Indented.", 5 ) ); writeln( stringIndent( "Indented a little more.", 10 )
Here's an example of the output.
Flush-left. Indented. Indented a little more.
© Copyright 2025 Tim Dietrich. | Legal Info