Developer Documentation Library > Scripting > mrScriptBasic overview > mrScriptBasic language reference > Script constants > String constants
 
String constants
The following table defines the constants that are built into mrScriptBasic for a variety of non-printable characters used in string manipulation. You can use these constants anywhere in a script.
Constant
Value
Description
mr.Cr
Chr(13)
Carriage return.
mr.CrLf
Chr(13) & Chr(10)
Carriage return-linefeed combination.
mr.FormFeed
Chr(12)
Form feed.
mr.Lf
Chr(10)
Line feed.
mr.NewLine
Chr(13) & Chr(10) or Chr(10)
A newline character
mr.Tab
Chr(9)
Horizontal tab.
See also
Script constants