Community Spring Cleaning week is here! Join your fellow Maveryx in digging through your old posts and marking comments on them as solved. Learn more here!

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
10 - Fireball

=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
20 - Arcturus
Spoiler
binuacs_0-1616154155228.png