Challenge #259: Disenvowel
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
syazsollah
5 - Atom
03-17-2021
07:38 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
JITHINPR
8 - Asteroid
03-18-2021
03:03 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
MarkJackson
8 - Asteroid
03-18-2021
03:28 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
nbrightw
7 - Meteor
03-18-2021
11:43 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
If any of the first characters of the original input were lower case, this probably wouldn't work.
Spoiler
SPOILER
rmassambane
10 - Fireball
03-18-2021
11:48 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
hellyars
13 - Pulsar
03-18-2021
12:00 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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
03-18-2021
01:18 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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]
Explanation: Match to any non-boundary character that is also in the set [aeiouyAEIOUY]
MohithRai
8 - Asteroid
03-19-2021
02:21 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Done
L_T
8 - Asteroid
03-19-2021
03:31 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
binuacs
21 - Polaris
03-19-2021
04:44 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator