Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

Weekly Challenges

Solve the challenge, share your solution and summit the ranks of our Community!

Also available in | Français | Português | Español | 日本語
IDEAS WANTED

Want to get involved? We're always looking for ideas and content for Weekly Challenges.

SUBMIT YOUR IDEA

Challenge #259: Disenvowel

syazsollah
5 - Atom

Simple answer using Formula and Regex tool.

JITHINPR
8 - Asteroid

My Solution

MarkJackson
8 - Asteroid

The syntax took some working out!

 

Spoiler
MarkJackson_1-1616063280501.png

 

 

nbrightw
7 - Meteor

If any of the first characters of the original input were lower case, this probably wouldn't work.

Spoiler
SPOILER

nbrightw_1-1616093033183.png

 

 

 

rmassambane
11 - Bolide

=D

hellyars
13 - Pulsar

Well, I might as well add the solution I ended up using as it was my question that kicked this off...

 

I ended up going with REGEX.

 

 

REGEX_Replace([Input Data], "\B[aeiouAEIOU]", '')

 

 

In the real world, I modified the solution to keep inputs like You as You and not Y.  I also adjusted it to ignore acronyms such as Universal UAS Ground Control to be Unvrsl UAS Grnd Cntrl etc. 

 

 

SeanAdams
17 - Castor
17 - Castor

Thanks for the fun challenge @MarqueeCrew - looking forward to some even trickier ones 🙂

 

 

Spoiler
Regex String:  \B[aeiouyAEIOUY]
Explanation: Match to any non-boundary character that is also in the set [aeiouyAEIOUY]


Solution.png

 

 

 

MohithRai
8 - Asteroid

Done

Spoiler
🚀

 

L_T
8 - Asteroid
Spoiler
Challenge 259.PNG
binuacs
21 - Polaris
Spoiler
binuacs_0-1616154155228.png