Boris Hoeller: uppercase2lowercase und viceversa

Beitrag lesen

$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.

Thanx a lot - klappt hervorragend!

bonngrüße
bho