in reply to Re^2: Generating a range of Unicode characters
in thread Generating a range of Unicode characters
Thanks, both of you. The following produces the output I am expecting.
perl -e '$a=join("",map ({chr} 0xdf .. 0x0101)); print "$a\n";'
I guess there is no way to do the Unicode equivalent of 'A' .. 'Z' instead.
Is there some way to skip the map() or chr() functions?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Is skipping map() and chr() possible?
by hippo (Archbishop) on Nov 16, 2017 at 09:33 UTC | |
|
Re: Is skipping map() and chr() possible?
by Laurent_R (Canon) on Nov 16, 2017 at 08:19 UTC |