in reply to unicode lc uc fc wtf

Your output of perldoc is missing
This keyword is available only when the "fc" feature is enabled, or when prefixed with "CORE::"; See feature. Alternately, include a "use v5.16" or later to the current scope.

and therefore, your oneliners are missing

-Mfeature=fc

This would output 0 on the problematic line. To get 1, you need to also add unicode_strings (or just change -e to -E to get both in recent Perls).

($q=q:Sq=~/;[c](.)(.)/;chr(-||-|5+lengthSq)`"S|oS2"`map{chr |+ord }map{substrSq`S_+|`|}3E|-|`7**2-3:)=~y+S|`+$1,++print+eval$q,q,a,

Replies are listed 'Best First'.
Re^2: unicode lc uc fc wtf
by Anonymous Monk on Sep 17, 2018 at 01:21 UTC
    Thank you! I forgot to scroll and didn't see that last part of perldoc...