in reply to Re: Collapsing a string to unique characters
in thread Collapsing a string to unique characters
Unix, pre 5.10: 42 -nle'@_=();@_[unpack"C*",$_]=/./g;print@_' Windows, pre 5.10: 40 -nle@_=();@_[unpack'C*',$_]=/./g;print@_ Unix, 5.10+: 40: -nlE'@_=();@_[unpack"C*",$_]=/./g;say@_' Windows, 5.10+: 38: -nlE@_=();@_[unpack'C*',$_]=/./g;say@_
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Collapsing a string to unique characters
by Corion (Patriarch) on Jan 09, 2009 at 14:55 UTC | |
|
Re^3: Collapsing a string to unique characters
by BrowserUk (Patriarch) on Jan 09, 2009 at 15:10 UTC | |
|
Re^3: Collapsing a string to unique characters
by JavaFan (Canon) on Jan 09, 2009 at 15:04 UTC |