in reply to Re^3: Unicode character handling with Net::Telnet::Cisco
in thread Unicode character handling with Net::Telnet::Cisco
This removed all the null unicode characters and left me with /r/r/n for the empty return string. I gained some insight from the following article: Unicode-processing issues in Perl$cleaned_output = decode_utf8( $command_output ); $cleaned_output =~ s/\0//g;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Unicode character handling with Net::Telnet::Cisco
by ikegami (Patriarch) on Jul 23, 2010 at 15:44 UTC | |
by josh803316 (Beadle) on Jul 23, 2010 at 18:37 UTC |