天软金融分析.NET函数大全 > TSL函数 > 第三方交互函数 > Html

TextToHtml    

简述
将字符串转化为HTML标准格式的串
定义
TextToHtml (Src: String):String
参数
名称类型说明
Src String字符串类型
返回String字符串
  • 范例

    Src:= "The First LETTER won\'t be replaced by \'one\', but the Second letter will.";
    return TextToHtml(Src);
    //结果:
    The First LETTER won't be replaced by 'one', but the Second letter will.
相关