Skip to main content
added 182 characters in body
Source Link

Bash + Core utilities, 2525 23 bytes

tr B-Z b-z|tr aeiou AEIOUAEIOU<<<${1,,} 

Try it online!Try it online!

Saved 2 bytes thanks to a suggestion of Nahuel Fouilleul.

Input is passed as an argument, output is on stdout.

Bash + Core utilities, 25 bytes

tr B-Z b-z|tr aeiou AEIOU 

Try it online!

Bash + Core utilities, 25 23 bytes

tr aeiou AEIOU<<<${1,,} 

Try it online!

Saved 2 bytes thanks to a suggestion of Nahuel Fouilleul.

Input is passed as an argument, output is on stdout.

Source Link

Bash + Core utilities, 25 bytes

tr B-Z b-z|tr aeiou AEIOU 

Try it online!