in reply to Re^2: Case conversion
in thread Case conversion

Well,
  1. it was about vowels,
  2. also, many people use split like that, but I find that a simple match (in list context) is better suited. In this case, with reference to your example:
    my $inverted = join '', map { whatever } $input =~ /./g;