How can I convert a binary number into a string character using Perl script?
-
1A binary what into what form of string? Give an example of what you have and what you want.Chas. Owens– Chas. Owens2009-05-19 06:12:55 +00:00Commented May 19, 2009 at 6:12
-
1Please specify the type of string representation you want. Hex digits? Decimal digits?thomasrutter– thomasrutter2009-05-19 06:15:07 +00:00Commented May 19, 2009 at 6:15
-
You are still not getting across what you have and what you want it turned into. Give a concrete example or we will spend all of our time guessing what you want.Chas. Owens– Chas. Owens2009-05-19 06:29:40 +00:00Commented May 19, 2009 at 6:29
-
Any sort of response would be great...user36457– user364572009-05-19 08:42:21 +00:00Commented May 19, 2009 at 8:42
Add a comment
|
3 Answers
If you mean binary to ASCII like this webpage, this should do the trick:
#!/usr/bin/perl
$binarySample = "01010100011001010111001101110100"; # "Test" in binary
$chars = length($binarySample);
@packArray = pack("B$chars",$binarySample);
print "@packArray\n";
output:
Test