GetAsQuotedPrintableDecoded ( EncodedText )
Decode Quoted Printable encoded strings.
Be the first to rate this function Log in to vote
Koji Takeuchi - Show more from this author
TonicNote, Inc. https://tonicnote.com |
Function definition: (Copy & paste into FileMaker's Edit Custom Function window)
GetAsQuotedPrintableDecoded ( EncodedText )
2021.07.20, Koji Takeuchi
description:
Decode Quoted-Printable encoded strings.
Based on GetAsURLDecoded ( EncodedText ): https://www.briandunning.com/cf/2510
Params:
EncodedText Quoted-Printable encoded text to decode.
Example:
GetAsQuotedPrintableDecoded ( "=E3=81=93=E3=82=93=E3=81=AB=E3=81=A1=E3=81=AF" )
-> "こんにちは"
GetAsQuotedPrintableDecoded ( "Hello" )
-> "Hello"
Comments
Note: these functions are not guaranteed or supported by BrianDunning.com. Please contact the individual developer with any questions or problems.