Remove vowels from a string: Difference between revisions

m (K)
Line 1,431:
 
=={{header|K}}==
{{works with|ngn/k}}
<syntaxhighlight lang=K>novowel: {x^"aeiouAEIOU"}
 
Line 1,436 ⟶ 1,437:
"Th Qck Brwn Fx Jmpd vr th Lzy Dg's Bck"
</syntaxhighlight>
 
=={{header|Kotlin}}==
<syntaxhighlight lang="scala">fun removeVowels(s: String): String {
6,962

edits