天软金融分析.NET函数大全
>
TSL函数
>
信息摘要及编码
>
BASE64编码
BASE64编码函数使用说明
复制链接
//常量定义
test_str:='hello world';
//BASE64
base64:=StrToBase64(test_str); //转换为BASE64编码
orig_str:=Base64ToStr(base64); //BASE64编码转换为字符串
相关
BASE64编码函数使用说明
StrToBase64
Base64ToStr