Looking for the documentation on the newest versions of SIL Engine and the Simple Issue Language for Jira 8? Click here and leave these dusty old pages behind!
Syntax
base64Decode(textToDecode)
Description
Decodes from Base64. This is useful when transferring data like retrieving images stored in a database.Parameters
Parameter name | Type | Required | Description |
---|---|---|---|
textToDecode | string | Yes | Text to decode from Base64. |
Return type
String
Returns the input text base64 encoded
Example
return base64Decode("RW5jb2RlIHRoaXMgdGV4dCE=");
Returns "Encode this text!"
See also