コールドフュージョンでメモ帳の行を壊せない理由を納得させることはできません。
これが私のコーディングです
<cfscript>
msg = "ppshein<CR>Coldfusion Developer<CR>Currently working in Singapore";
currentPath = getCurrentTemplatePath();
currentDirectory = getDirectoryFromPath(currentPath);
chgMsg = ReReplace(msg, "<CR>", "<CR>\r\n", "ALL");
FileWrite("#currentDirectory#\myfile.txt", "#chgMsg#");
return "successfully generated";
</cfscript>
私がコーディングの上で実行してmyfile.txtを開くと、それが起こります
ppshein<CR>Coldfusion Developer<CR>Currently working in Singapore
私が欲しいのは
ppshein<CR>
Coldfusion Developer<CR>
Currently working in Singapore
コメントをいただければ幸いです。