Remove vowels from a string: Difference between revisions

no edit summary
(Applesoft BASIC)
No edit summary
Line 2,066:
<pre>Input : Visual Basic .NET
Output : Vsl Bsc .NT</pre>
 
=={{header|Vlang}}==
{{trans|AutoHotkey}}
 
<lang vlang>fn main() {
mut str := 'The quick brown fox jumps over the lazy dog'
for val in 'aeiou'.split('') {str = str.replace(val,'')}
println(str)
}</lang>
 
{{out}}
<pre>
Th qck brwn fx jmps vr th lzy dg
</pre>
 
=={{header|Wren}}==
291

edits