in reply to Regex converting Binary to ASCII
#!/usr/bin/perl -wl use strict; my $str = 'The ASCII chars 64 and 35'; print $str; $str =~ s/(\d+)/chr $1/eg; print $str; __END__ Prints: The ASCII chars 64 and 35 The ASCII chars @ and #
--
John.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Regex converting Binary to ASCII
by tachyon (Chancellor) on Mar 20, 2002 at 11:55 UTC | |
|
Re: Re: Regex converting Binary to ASCII
by growlf (Pilgrim) on Mar 19, 2002 at 23:34 UTC |