Function Reference

StringAddCR

渡された文字列中のラインフィード文字(Chr(10))の前にキャリッジリターン文字(Chr(13))を付加します。

StringAddCR ( "string" )

 

パラメータ

string 変換する文字列

 

返し値

ラインフィード文字(@LF)の前にキャリッジリターン文字(@CR)を付加した文字列を返します。

 

注意

なし。

 

関連

StringStripCR, StringReplace

 


$old = "Notepad" & @LF & "expects" & @LF & "CRLF text."
$new = StringAddCR($old)