Remove vowels from a string: Difference between revisions

Content added Content deleted
m (K)
Line 1,430: Line 1,430:
</pre>
</pre>


=={{header|K}}==
<syntaxhighlight lang=K>novowel: {x^"aeiouAEIOU"}

novowel"The Quick Brown Fox Jumped Over the Lazy Dog's Back"
"Th Qck Brwn Fx Jmpd vr th Lzy Dg's Bck"
</syntaxhighlight>
=={{header|Kotlin}}==
=={{header|Kotlin}}==
<syntaxhighlight lang="scala">fun removeVowels(s: String): String {
<syntaxhighlight lang="scala">fun removeVowels(s: String): String {