1. 编程参考及示例

1.16. 回车键用什么符号表示?写文件只换行一次

https://infosys.beckhoff.com/content/1033/tc3_plc_intro/2529327243.html?id=4470464088993876920

CharactersDescription 
$$Dollar signs美元符号
$'Single quotation mark单引号
$L or $lLine feed换行
$N or $n New line换行
$P or $p Page feed换页
$R or $r Line break回车
$T or $tTab制表键


if right(sCSVLine,1)=‘$R$L’ then

  sCSVLine := REPLACE (sCSVLine,'$L',1,LEN(sCSVLine)=1);

end_if



如果sCSVLine等于$R$L,就让它等于 $L,避免两个换行出现,写.csv文件可以确保只写一行


2017.12.19 冯建鹏 编辑