10-08-2010 11:42 AM
I am working with a VI that invokes a telnet session. The responses come back in multiple line formats. What's a quick way to translate the non-printing characters so I can see what to use for delimiters? Using platform dependent EOL does not work which I expected since this data is coming straight from the UUT.
Thanks,
jvh
Solved! Go to Solution.
10-08-2010 11:50 AM
@jvh75021 wrote:
I am working with a VI that invokes a telnet session. The responses come back in multiple line formats. What's a quick way to translate the non-printing characters so I can see what to use for delimiters? Using platform dependent EOL does not work which I expected since this data is coming straight from the UUT.
Thanks,
jvh
I will noramlly put the data in a string indicator and set it for either slash code or hex display. If that gets to hard to read, cast the string as an array of bytes and display that.
Ben
10-08-2010 01:23 PM
Took me a minute or two to find it under properties, but back slash character representation is the trick!
Thanks.
@Ben wrote:
@jvh75021 wrote:
I am working with a VI that invokes a telnet session. The responses come back in multiple line formats. What's a quick way to translate the non-printing characters so I can see what to use for delimiters? Using platform dependent EOL does not work which I expected since this data is coming straight from the UUT.
Thanks,
jvh
I will noramlly put the data in a string indicator and set it for either slash code or hex display. If that gets to hard to read, cast the string as an array of bytes and display that.
Ben
10-08-2010 01:25 PM - edited 10-08-2010 01:25 PM
@jvh75021 wrote:
Took me a minute or two to find it under properties, but back slash character representation is the trick!
Just right-click on the control/indicator and select the display mode.