fluffos/docs/stdlib/string/base64decode.md

28 lines
553 B
Markdown
Raw Permalink Normal View History

---
title: stdlib / base64decode
---
2023-11-25 09:50:24 -08:00
# base64decode
### NAME
base64decode - decodes a string encoded in base64 into a human-readable format
### SYNOPSIS
string base64decode( string source ) ;
### ARGUMENTS
source - the source base64-encoded string to decode
### DESCRIPTION
Decodes and returns a base64-encoded string into human-readable format.
### EXAMPLES
printf( "%s", base64decode( "Rmx1ZmZPUyBpcyBncmVhdCEhIDop" ) ) ;
// Result: FluffOS is great!! :)
Compare your results with: https://www.base64decode.org/