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

HtmlToText    

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

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