天软金融分析.NET函数大全 > TSL函数 > 基础函数 > 字符串 > 多语言支持函数

UnicodetoUTF8    

简述
Unicode串转为UTF8串。天软字符串前加L表示宽字节字符串,即Unicode串。
定义
UnicodetoUTF8(S:String):String;
参数
名称类型说明
SString字符串,Unicode编码字符串。
返回String字符串,UTF8编码字符串。
  • 范例



    return unicodetoutf8(L'2020 Tinysoft 天软科技');

    //返回:2020 Tinysoft 澶╄蒋绉戞妧

相关