LabVIEW String Tools

Table of Contents

String toolkit to parse and build quoted, escaped and literal strings.

String Tools

Parses next string argument by double-quotes (Escaped string), single-quotes (Literal string) or no-quotes (Non-whitespace string).

String Parse

Download VI (LV2021) | Download VI (LV2020)

Escape and Unescape

'\n' - Line Feed
'\r' - Carriage Return
'\t' - Tab
'\f' - Form Feed (JSON)
'\"' - Double quote
'\\' - Backslash
'\00' .. '\FF' - Hex code (LabVIEW INI Compatibility)
   Escapes: \00..08,0C,0E..1F,7F..FF
   Unescapes: '\[0-9A-F][0-9A-F]'

String Escape

String Unescape

String Escape

String Unescape

Parse String Args

Parse unix type string arguments.

String Parse Args