$string = "<TAG>hallo</TAG>";
for(split(//,$string)) { (/[a-z]/) ? ($output .= uc) : ($output .= lc); }
print $output; # <tag>HALLO</tag>
Nicht ausprobiert, aber dürfte fürs Einfachste mal funktionieren.
$string = "<TAG>hallo</TAG>";
for(split(//,$string)) { (/[a-z]/) ? ($output .= uc) : ($output .= lc); }
print $output; # <tag>HALLO</tag>
Nicht ausprobiert, aber dürfte fürs Einfachste mal funktionieren.