in reply to Re: bitwise string operator question
in thread bitwise string operator question
Can't believe i hadn't picked that up before now ...perl -le'sub uc{@_[0]^" "};print uc($_)for(a..z)'
DOH! Heh, my original one-liner did the bitwise XOR in a map ... i should know better than that. :P Let's try that again:
There, no ambiguity now. But ... the saddest part is that i learned this trick too late. My C++ Lab students last semester had to write a function that would flip case ... i really wish i could have blown their minds with this one. ;)perl -le'sub flip{@_[0]^" "};print flip($_)for(a..z)'
jeffa
L-LL-L--L-LL-L--L-LL-L-- -R--R-RR-R--R-RR-R--R-RR B--B--B--B--B--B--B--B-- H---H---H---H---H---H--- (the triplet paradiddle with high-hat)
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: bitwise string operator question
by Abigail-II (Bishop) on Aug 07, 2003 at 15:05 UTC | |
Re: 2Re: bitwise string operator question
by Koschei (Monk) on Aug 08, 2003 at 07:15 UTC |