StringAddCR

首页  后退  前进

StringAddCR
down2

StringAddCR

在字符串的全部换行符 Chr(10) 前附加回车符 ( Chr(13) ).

 

StringAddCR ( "string" )

参数

string

需附加回车符的字符串

返回值

返回所有换行符实例(@LF)被前缀回车符(@CR)替换后的字符串.

 

函数示例

#include <MsgBoxConstants.au3>
; Add the carriage return charcter to all the line feed characters in the string.
Local $sString = StringAddCR("This is a sentence " & @LF & "with " & Chr(10) & "whitespace.")
MsgBox($MB_SYSTEMMODAL, "", $sString)

----------------------------------------

 

该函数可以通过命令 exect 调用

参见:

StringStripCR, StringReplace

例子
copy
StringAddCR('Блокнот'&@LF&'ожидает'&@LF&'CRLF -текст.')

 

exect=StringAddCR('Блокнот'&@LF&'ожидает'&@LF&'CRLF-текст.') GLOBALEXECT<c1> ;; 将回车添加到文本的示例

up2

tcimage © Аверин Андрей для Total Commander Image Averin-And@yandex.ru