String Format Tool Parameters

Input String 1

 

 

 


Precautions for Correct Use: The String Format Tool only accepts the three special characters mentioned above.


 

Input String 2

 

 

 

Non-Printable Characters

The String Format Tool accepts the following special characters, which can be used to configure the output string:

 

\a bell

 

\b backspace

 

\f form feed

 

\n new line

 

\r carriage return

 

\t horizontal tab

 

\v vertical tab

 

\’ single quote

 

\x022 double quote ( )

 

\? question mark

 

\ooo three digit octal notation ASCII value, i.e. \145 = 'e'

 

\x0hh hexadecimal notation ASCII value, i.e. \0x04C = 'L'

 


Precautions for Correct Use: To escape the ‘\’ character, use the hexadecimal or octal versions \x5c or \134.