| Bytes | Lang | Time | Link |
|---|---|---|---|
| 091 | AWK | 241125T202622Z | xrs |
| 015 | Japt S | 180123T174402Z | Shaggy |
| 016 | Thunno 2 J | 230806T132055Z | The Thon |
| 016 | Vyxal r | 221206T064758Z | tybocopp |
| nan | Ohm | 170227T165217Z | Nick Cli |
| 033 | MATL | 170227T175848Z | Suever |
| 075 | C# Visual C# Interactive Compiler | 190405T085816Z | Innat3 |
| 038 | PowerShell | 170227T105546Z | Bjorn Mo |
| 110 | C gcc | 190307T111349Z | ceilingc |
| 064 | Node.JS | 190308T025759Z | Ryan Knu |
| 070 | SNOBOL4 CSNOBOL4 | 190307T214050Z | Giuseppe |
| 049 | R | 170228T163736Z | Tensibai |
| 049 | Java 8 | 180626T183403Z | Jakob |
| 045 | Julia 0.6 | 180626T174755Z | Sundar R |
| 053 | PHP | 170227T102815Z | Titus |
| 013 | Jelly | 180123T195008Z | Erik the |
| 251 | Perl | 170227T085959Z | Toto |
| 180 | C | 170227T102535Z | Albert R |
| 028 | APL Dyalog | 170607T173542Z | Adá |
| 146 | C | 170306T211925Z | MD XF |
| 099 | Python 3 | 170301T083601Z | sagiksp |
| 051 | MATLAB / Octave | 170227T180756Z | Suever |
| 096 | Python 3 | 170227T152946Z | ovs |
| 123 | C | 170228T163059Z | lynn |
| 061 | Python | 170227T090517Z | Erik the |
| 102 | Python 3 | 170227T212016Z | sporkl |
| 181 | Clojure | 170227T223328Z | Carcigen |
| 038 | Javascript ES6 | 170227T214913Z | nderscor |
| nan | Ruby | 170227T140907Z | gntskn |
| 068 | Python 3 | 170227T171346Z | Trelzevi |
| nan | 170227T162447Z | user1893 | |
| 040 | JavaScript ES6 | 170227T091514Z | edc65 |
| 020 | V | 170227T180820Z | DJMcMayh |
| 024 | Pyth | 170227T180323Z | Maltysen |
| 024 | Retina | 170227T144818Z | mbomb007 |
| 030 | Sed | 170227T083727Z | Michael |
| 054 | PHP | 170227T103217Z | aross |
| 014 | Jelly | 170227T092408Z | Jonathan |
| 018 | 05AB1E | 170227T092526Z | Emigna |
| 180 | Batch | 170227T102929Z | Neil |
| 030 | Perl 6 | 170227T101709Z | smls |
| 022 | Pyke | 170227T093857Z | Blue |
| 024 | Retina | 170227T082221Z | Martin E |
AWK, 91 bytes
{for(y="[AEIOUYaeiouy]";i++<NF;){$i~y&&x++;if(x&&$i!~y)break}print y=substr($0,1,i-1),y,$0}
To Test:
awk -F "" '{for(y="[AEIOUYaeiouy]";i++<NF;){$i~y&&x++;if(x&&$i!~y)break}print y=substr($0,1,i-1),y,$0}' <<< "Why is y a vowel?"
{for(y="[AEIOUYaeiouy]"; # handy regex
i++<NF;) # each char
{$i~y&&x++; # mark when vowel
if(x&&$i!~y)break} # end when not vowel
print y=substr($0,1,i-1) # so we don't use substr twice
,y,$0} # just reused y
Japt -S, 17 15 bytes
2Æf"^.*?%y+"ÃpU
2Æf"^.*?%y+"ÃpU :Implicit input of string U
2Æ :Map the range [0,2)
f : Match in U
"^.*?%y+" : RegEx /^.*?[aeiouy]+/gi
à :End map
pU :Push U
:Implicit output joined with spaces
Thunno 2 J, 16 bytes
ð+k.s€ƇJTȮ⁺ɱð+ḌƤ
Explanation
ð+k.s€ƇJTȮ⁺ɱð+ḌƤ # Implicit input
ð+ # Append a space to the input string
k.s€Ƈ # Check if each character is in the string "AEIOUYaeiouy"
JTȮ⁺ # Find the first one-based index of [1, 0]
ɱ # Take this many characters from the start of the input
ð+ # Append a space to this string
ḌƤ # Double it and append the input string
# Implicit output
Vyxal r, 16 bytes
k∩c)M¯uḟ₌iẎ+:"JṄ
Explanation:
) # Lambda from the beginning of the line
k∩ # Does "aeiouyAEIOUY"
c # Contain the lambdas argument
M # Map that lambda over the input string returning a list of 1s and 0s (1 if a vowel and 0 if not)
¯ # Differences between each
u # Negative 1
ḟ # In the list of the differences, find the first index of that
# (this will be the length of the string to prepend twice (let's call that s), minus 1. Let's call that number l)
₌ # Apply the next two elements to the top of the stack
i # Index; get the lth character from the input (0-indexed)
Ẏ # Get the first l characters from the input
+ # Add (r flag flips argument order).
# Now we have s, but found in a way that if l is -1 (i.e. -1 isn't in the deltas) s isn't just an empty string
: # Duplicate
" # Pair (resulting in [s, s])
J # Prepend (not append because of r flag) that to the input
Ṅ # Join by spaces
Ohm, 19 bytes (CP437)
≡┬üC▓αy_ε;TF«u├DQüj
Explanation:
≡┬üC▓αy_ε;TF«u├DQüj Main wire, arguments: s
≡ Triplicate input
C Push input, all lowercase with concatenated space character
▓ ; Map string into an array with...
αy_ε Boolean: is element a vowel?
TF«u Find first occurrence of [true, false]
├D Slice input up to that index and duplicate it
Q Reverse stack
üj Join on spaces, implicitly print
MATL, 33 bytes
'(^.*?[yY%s]+)'13Y2YD'$1 $1 $1'YX
Try it at MATL Online
Explanation
% Implicitly grab input as a string
'(^.*?[yY%s]+)' % Push this string literal (regex pattern)
13Y2 % Push the string literal 'AEIUOaeiuo'
YD % Replace the '%s' in the string with 'AEIUOaeiuo'
'$1 $1 $1' % Push the string literal to use for replacement which repeats
% the first match 3 times
YX % Perform regular expression matching and replacement
% Implicitly display the result
C# (Visual C# Interactive Compiler), 79 75 bytes
Since it hasn't been posted yet...
f=>{var v=new Regex(".*?[aeiouyAEIOUY]+").Match(f).Value+" ";return v+v+f;}
PowerShell, 46 47 41 39 38 bytes
$args-replace"^.*?[aeiouy]+",(,'$&'*3)
Thanks to Maarten Bamelis for the bugfix
Saved 6 bytes thanks to Rynant
Saved 2 3 bytes thanks to Joey
C (gcc), 111 110 bytes
*d="AEIOUYaeiouy";b;f(char*a){b=strcspn(a,d);write(printf(" "),a,write(1,a,b+strspn(a+b,d)));printf(" %s",a);}
This just uses library functions strspn() and strcspn() and exploits the order in which gcc evaluates function parameters. Slightly less golfed
*d="AEIOUYaeiouy";b;
f(char*a){
b=strcspn(a,d);
write(printf(" "),a,write(1,a,b+strspn(a+b,d)));
printf(" %s",a);
}
Thanks to @gastropner for -1.
Node.JS, 64 bytes
console.log(process.argv[2].replace(/.*?[aeiouy]+/i,"$& $& $&"))
SNOBOL4 (CSNOBOL4), 70 bytes
T =INPUT
T (ARB SPAN('AEIOUYaeiouy')) . X
OUTPUT =X ' ' X ' ' T
END
R, 49bytes
sub("(.*?[aeiouy]+)","\\1 \\1 \\1",scan(,""),T,T)
Regex based replace, match everything until not a vowel, capture and replace it by itself 3 times.
scan wait for a double type input, to tell it to use character type we have to give it two arguments, first is the default , emtpy string for stdin, and for the second the R evaluation allow to use only c as it's not ambiguous for character in this context.
T stands for TRUE and save some char as 4th and 5th parameter to sub to tell it to ignore case and use PCRE (the greedyness is not the same with R regex syntax)
4 bytes saved courtesy of Sumner18 along with the Tio link to running code
Java 8, 49 bytes
Lambda from String to String.
s->s.replaceAll("(?i)^(.*?[aeiouy]+)","$1 $1 $1")
The same regular expression approach many are using. (?i) turns on case insensitivity, the capture group is substituted for each $1 in the replacement string, and .*? is lazy so that it doesn't match vowels.
Julia 0.6, 45 bytes
s->(match(r"^.*?[aeiouy]+"i,s).match*" ")^2*s
A pretty straightforward regex-based solution (for now at least). * is a concatenation operator when applied to strings, and ^ is a self-concatenation operator - "Moo "^2 == "Moo "*"Moo " == "Moo Moo ".
PHP, 69 65 53 bytes
<?=preg_filter("#.*?[aeiouy]+#i","$0 $0 $0",$argn,1);
requires PHP 5.3 or later. Run as pipe with -F or try some versions online.
Saved 4 bytes (and fixed the code) with regex stolen from @aross;
10 more with preg_filter instead of preg_match and -F
and another two with an improved regex.
75 81 bytes for a non-regex version:
for(;$c=$argn[$i++];)($k+=$k^!trim($c,aeiouyAEIOUY))>1?:$w.=$c;echo"$w $w $argn";
requires PHP 5 or later; replace ?: with ?1: for older PHP. Run with -nR
Breakdown
for(;$c=$argn[$i++];) // loop $c through input characters
($k+=$k^! // 2. !$k and vowel or $k and not vowel: increment $k
trim($c,aeiouyAEIOUY) // 1. strip vowels -> vowel=false, non-vowel=true
)>1 // 3. if $k>1
? // do nothing
:$w.=$c; // else append $c to $w
echo"$w $w $argn"; // output
Perl, 25 + 1 (-p flag)
s/.*?[aeiouy]+/$& $& $&/i
C, 202 196 195 193 190 180
i,j,k,m,n;f(char*a){if((a[i/12]-"AEIOUY"[i++%6])%32==0)k=n=24-(i%12);else if(k&&!n--){m=j=(i-13)/12;for(i=0;i<j*2;)printf("%c%c",a[i%j],(i==j-1)*32),i++;printf(" %s", a);}m?:f(a);}
Thing left to golf:
•Collapse two printf into one.
•Printing my space char can be changed into %*c logic I'm sure.
•I'm using conditionals which can be removed somehow
•j=(i-13)/12 can likely be shortened.
•[A-Y] conditional checks if ==0 which is usually un-necessary, though I'm currently stuck on that one (tried switching if-else and ditching the ==0 altogether but that requires adding more {brackets} and increase byte size)
Tricks I've used to golf this down:
•Combined a double for loop string search by using modulo for x-axis and integer-division for y-axis (input string vs vowel string). (X-axis is looped twice before iterating once on y-axis; the first time with [A-Z] and the second time with [a-z] using character value 32 differential.
•Bypassed having to use "[A-Y] and [a-y]" by just taking the distance between character sets and modulo 32. That way if the distance is 0 (A-A) or if the distance is 32 (a-A)
•Re-using integer variables that are no longer in use as boolean variables.
•Recursively calling a function with the same string to process through it and avoid a second for-loop.
•Set BOOL values to the logic of setting another variable. (e.g. bool = i=5;) to knock out both with one stone.
•Ternary empty-true exploit abuse. (GCC)
Readable Format:
i,j,k,m,n;
f(char*a){
if((a[i/12]-"AEIOUY"[i++%6])%32==0)
k=n=24-(i%12);
else
if(k&&!n--){
m=j=(i-13)/12;
i=0;
for(;i<j*2;)
printf("%c%c",a[i%j],(i==j-1)?32:0),i++;
printf(" %s", a);
}
m?:f(a);
}
Knocked off 10 bytes thanks to Keyu Gan (in comments)
APL (Dyalog), 28 bytes
'(?i)^.*?[aeiouy]+'⎕R'& & &' or 29 chars: '^.*?[aeiouy]+'⎕R'& & &'⍠1
Simply a ((?i) or ⍠1) case-insensitive PCRE Replace of
^ the beginning
.*? zero or more characters (lazy)
[aeiouy]+ one or more vowels
with
& & & the entire match thrice with spaces inbetween
Version without RegEx, 43 bytes
⊢(↑,' ',↑,' ',⊢)⍨1⍳⍨1 0⍷'aeiouy'∊⍨' ',⍨819⌶
819⌶ lowercase
' ',⍨ append a space
'aeiouy'∊⍨ which letters are vowels
1 0⍷ vowels that are followed by a non-vowel
1⍳⍨ index of first one
⊢(…)⍨ apply the following tacit function with the string as right argument, and the above index as left argument
↑ that many characters taken from the string
, followed by
↑ that many characters taken from the string
, followed by
⊢ the string
C, 150 146 bytes
f(char*s){char*v="aeiouyAEIOUY",*p=strpbrk(s,v);int i=strspn(p,v),f=i+(p-s),d=0,j=2;while(j--)while(d<f)putchar(s[d++]);d=0,putchar(' ');puts(s);}
Ungolfed:
#include <stdio.h>
#include <string.h>
int main(void)
{
char *s = "Land"; // change this
char *p = strpbrk(s, "aeiouyAEIOUY");
int count = strspn(p, "aeiouyAEIOUY");
int idx = count + (p - s);
int i, j = 2;
while (j--)
{
while (i < idx)
putchar(s[i++]);
i = 0;
putchar(' ');
}
puts(s);
}
How it works:
strpbrkfinds the first vowel and returns a pointerp.strspnfinds how many vowels there are in a row inpand returns an integercount.- The index
idxof the last vowel equalscount(# of vowels) +p - s(index of first vowel). - Print the first
idxcharacters ins, twice.
Python 3, 102 99 bytes
def l(s,v=0):
for l in range(len(s)):
if s[l]in"aeiouyAEIOUY":v=1
elif v:return(s[:l]+" ")*2+s
Running on IDLE, so the Print/output part stands
>>> l("Land")
'La La Land'
Managed to shave off a space or two, and replace .lower() with simply adding uppercase vowels to the check.
MATLAB / Octave, 58 51 bytes
7 Bytes saved thanks to @HughNolan
@(x)regexprep(x,'(^.*?[aeiouyAEIOUY]+)','$1 $1 $1')
Creates an anonymous function named ans which can be called by passing a string to it: ans('Land')
For MATLAB compatibility, $0 should be used in place of $1 in the above function.
Python 3, 101 96 bytes
s=input()
v=i=0
for c in s:
w=c in'aAeEiIoOuUyY'
if v*~-w:break
v=w;i+=1
print(s[:i],s[:i],s)
a non-regex solution
Commented:
s=input()
a='aAeEiIoOuUyY'
v=i=0
for c in s: # for each character in the string
w=c in a # w = True if the character is a vowel, else false
# true is equivalent to 1 and false to zero
# v*(w-1) evaluates only to true (-1 in this case) if v=1 (last character was a vowel) and w=0 (current character is not a vowel)
if v*(w-1):break # if so, break the loop
v=w;i+=1 # increase the counter and set v to w
print(s[:i],s[:i],s)
C, 123 bytes
#define v(x)while(x strchr("AEIOUY",*s&95))++s;
a;f(s,t)char*s,*t;{t=s;v(!)v()a=*s;*s=0;printf("%s %s ",t,t);*s=a;puts(t);}
Call as:
main(){char s[] = "queueing"; f(s);}
Python, 61 bytes
import re;lambda x:re.sub('(.*?[aeiouy]+)',r'\1 \1 \1',x,1,2)
Here comes the first non-regex-based language (using regex).
Saved 1 byte thanks to Neil.
Python 3, 130 102 bytes
w=input();a='';v=0
for i in w:
if i in 'aeiouyAEIOUY': v=1
elif v:
break
a+=i
a+=' ';print(a*2+w)
Uses no function of any kind and no external libraries! (Unless print and input count as functions, which they do).
Works by seeing if it gets out of the consonants in the start of the title into the 'vowel zone'. If it is in the 'vowel zone' and detects a consonant, then it prints the title.
Saved 28 bytes thanks to @LliwTelracs
Clojure, 192 188 181 bytes
(fn[p](let[[f] p v #(#{\a \e \i \o \u \y}(Character/toLowerCase %))[q r](split-with(if(v f)v #(not(v %)))p)[w _](split-with v r)as #(apply str %)](str(as(repeat 2(str(as q)(as w) \ )))p)))
-4 bytes by inlining first-sp-pred (whoops).
-7 bytes by removing some missed spaces
This was far more challenging than I thought it would be going in! I'm manually parsing the string...since I still haven't gotten around to learning regex :/
See pre-golfed code for breakdown:
(defn repeat-prefix-cons [phrase]
(let [[first-letter] phrase ; Get first letter
; Function that checks if a lowercased character is a part of the vowel set
vowel? #(#{\a \e \i \o \u \y} (Character/toLowerCase %))
; cons(onant)? Negation of above
cons? #(not (vowel? %))
; Decide how to split it depending on if the first character is a vowel
first-sp-pred (if (vowel? first-letter) vowel? cons?)
; Split off the first chunk of cons/vowels
[pre1 r] (split-with first-sp-pred phrase)
; Split off the rest of the vowels
[pre2 r2] (split-with vowel? r)
; Shortcut function that turns a list into a string (Basically (join "" some-list-of-strings) )
as #(apply str %)]
(str ; ... then concat the prefix in front of the original phrase, and return
(as ; ...then turn it back into a string since "repeat" returns a list... ^
(repeat 2 ; ... then repeat it twice (shame Clojure doesn't have string multiplication)... ^
(str (as pre1) (as pre2) \ ))) ; Concat the 2 prefix parts together with an space at the end... ^
phrase)))
Javascript (ES6), 38 bytes
x=>(y=/.*?[aeiouy]+/i.exec(x)+' ')+y+x
f=
x=>(y=/.*?[aeiouy]+/i.exec(x)+' ')+y+x
<!-- snippet demo: -->
<input list=l oninput=console.log(f(this.value))>
<datalist id=l><option value=Land>
<option value=Moonlight>
<option value=queueing>
<option value="This isn't a single word.">
<option value="It's fun to play golf">
<option value=Ooo>
<option value="I'm okay.">
<option value="Hmm, no. There will be at least one vowel, but it can be anywhere.">
<option value="Why is y a vowel?">
Ruby, 31 32 30 Bytes
->s{(s[/.*?[aeiouy]+/i]+' ')*2+s}
Two bytes saved thanks to G B and Cyoce.
Python 3, 75 68 bytes
lambda s:(s[:[x in"aAeEiIoOuUyY"for x in s][1:].index(0)+1]+" ")*2+s
Explanation:
Works by generating a boolean value for every character in the input string based on whether or not it is a vowel, and finding the lowest index of 0, the first non-vowel (excluding the first character). It returns the substring to this index twice,separated by spaces, and the original string.
Java 8, 147 140 bytes
Golfed:
import java.util.regex.*;s->{Matcher m=Pattern.compile("([^aeiouy]*[aeiouy]+)",2).matcher(s);m.find();return m.group()+" "+m.group()+" "+s;}
Ungolfed:
import java.util.regex.*;
public class LaLaLandNoWaitMooMooMoonlight {
public static void main(String[] args) {
for (String[] strings : new String[][] { { "Land", "La La Land" }, { "Moonlight", "Moo Moo Moonlight" },
{ "queueing", "queuei queuei queueing" }, { "This isn't a single word.", "Thi Thi This isn't a single word." },
{ "It's fun to play golf", "I I It's fun to play golf" }, { "Ooo", "Ooo Ooo Ooo" },
{ "I'm okay", "I I I'm okay" }, { "Hmm, no. There will be at least one vowel, but it can be anywhere.",
"Hmm, no Hmm, no Hmm, no. There will be at least one vowel, but it can be anywhere." } }) {
final String input = strings[0];
final String expected = strings[1];
final String actual = f(s -> {
java.util.regex.Matcher m = java.util.regex.Pattern.compile("([^aeiouy]*[aeiouy]+)", 2).matcher(s);
m.find();
return m.group() + " " + m.group() + " " + s;
} , input);
System.out.println("Input: " + input);
System.out.println("Expected: " + expected);
System.out.println("Actual: " + actual);
System.out.println();
}
}
private static String f(java.util.function.Function<String, String> function, String input) {
return function.apply(input);
}
}
Note: the literal 2 in the code is the value of java.util.regex.Pattern.CASE_INSENSITIVE.
JavaScript (ES6), 40 46
Edit 5+1 bytes saved thx @Arnauld
Overly long compared to other using the same trick (as usual)
x=>x.replace(/.*?[aeiouy]+/i,'$& $& $&')
let f=
x=>x.replace(/.*?[aeiouy]+/i,'$& $& $&')
test=`Land
La La Land
Moonlight
Moo Moo Moonlight
queueing
queuei queuei queueing
This isn't a single word.
Thi Thi This isn't a single word.
It's fun to play golf
I I It's fun to play golf
Ooo
Ooo Ooo Ooo
I'm okay
I I I'm okay
Hmm, no. There will be at least one vowel, but it can be anywhere.
Hmm, no Hmm, no Hmm, no. There will be at least one vowel, but it can be anywhere.`
test.split(`\n\n`).forEach(z=>{
var [i,k]=z.split(`\n`),x=f(i);
console.log(k==x ? 'OK':'KO',i+'\n'+x);
})
V, 21, 20 bytes
é /ã[aeiouy]«.
3ä|<
Explanation:
é " Insert a space
/ " Jump forward too...
ã[aeiouy]«. " The first non-vowel after a vowel
3ä " Make three copies of
| " Everything from the cursor to the first character
< " Delete the space we inserted
Hexdump:
00000000: e920 2fe3 5b61 6569 6f75 795d ab93 2e0a . /.[aeiouy]....
00000010: 33e4 7c3c 3.|<
Alternate version (21 bytes):
Íã¨[aeiouy]«©/± ± &
This uses ridiculous regex compression, and it still manages to get it's butt kicked by the other golfing languages. For reference, this is about two/thirds the length of the regular "uncompressed" version, namely:
:%s/\v\c(.{-}[aeiou]).*/\1 \1 &
Explanation:
Í " Replace on every line:
ã " Case-insensitive
¨ © " Capture-group 1
<131> " Any character, any number of times (non-greedy)
[aeiouy]« " A vowel, repeated once or more
<129> " Followed by anything
/ " Replaced with:
± ± " Capture group one twice, with spaces between
& " The whole matched pattern
Here is a hexdump:
00000000: cde3 a883 5b61 6569 6f75 795d aba9 812f ....[aeiouy].../
00000010: b120 b120 26 . . &
Sed 30 bytes
s/[^aeiouy]*[aeiouy]\+/& & &/i
PHP, 55 54 bytes
Note: encoded version uses IBM-850 encoding.
echo preg_filter("/^(.*?[aeiouy]+)/i","$1 $1 $0",$argn);
echo preg_filter(~ðíÎÐı└ñ×ÜûÉèåóÈÍðû,~█╬▀█╬▀█¤,$argn); # Encoded
Run like this:
echo "This isn't a single word." | php -nR 'echo preg_filter(~ðíÎÐı└ñ×ÜûÉèåóÈÍðû,~█╬▀█╬▀█¤,$argn);'
Explanation
Just a regex replace with non-eager matching any character at the start of the string, followed by any amount of vowels (use i option for case insensitivity). That capture group is then printed twice, followed by the entire string.
Tweaks
- Saved a byte by using
-Rto make$argnavailable (Thx Titus)
Jelly, 24 22 20 19 14 bytes
-5 bytes by utilising a trick from Emigna's brilliant answer (look for 10 in the isVowel list)
;⁶e€Øyw⁵ḣ@;⁶Ȯ;
Try it online! (not quite sure how to make a test suite for this full program)
15 byte alternative:
;⁶e€Øyw⁵ḣ@;⁶ẋ2;
Here is full test suite.
How?
;⁶e€Øyw⁵ḣ@;⁶Ȯ; - Main link: string s
⁶ - space character
; - concatenate to s (for all vowel edge case)
Øy - vowels + y yield
e€ - exists in? for €ach (gives a list of isVowel identifiers)
⁵ - 10
w - index of first sublist (with implicit decimalisation of 10 to [1,0])
ḣ@ - head with reversed @rguments (start of word up to & including vowel group)
⁶ - space character
; - concatenate (start of word up to & including vowel group plus a space)
Ȯ - print and yield (hence a full program...
- ...the alternative ẋ2 repeats instead in order to return the result)
; - join with the input, s
- implicit print (of the second repetition and input string)
05AB1E, 23 19 18 bytes
Saved 1 byte thanks to Okx.
Dlð«žOsSåJTk>£D¹ðý
Try it online! or as a Test suite
Explanation
Dl # create a lowercase copy of implicit input
ð« # append a space
žO # push the vowels
s # swap lowercase input to the top of the stack
S # split into a list of chars
å # check each char for membership in the vowel-string
# (creates a list with 1 at the index of vowels and 0 for non-vowels)
J # join to string
Tk # find the index of 10
> # increment
£ # take that many items from input
D # duplicate this string
¹ # push input
ðý # join the strings by space
Batch, 180 bytes
@echo off
set/ps=
set v=aeiouy
set g=c
set t=
:l
call set w=%%v:%s:~,1%=%%
if %v%==%w% goto %g%
set g=o
:c
set t=%t%%s:~,1%
set s=%s:~1%
goto l
:o
echo %t% %t% %t%%s%
Implements a state machine. g keeps track of whether we've ever seen a vowel, so if the current letter isn't a vowel we know whether to output or continue with the next letter.
Pyke, 22 bytes
l1~V\y+L{$0R+f2<ssDQdJ
This is 4 bytes longer than it should really be had I implemented a shorter way of getting vowels including y.