Challenge #182: Word Sleuthing
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
JamesMA
Alteryx Alumni (Retired)
09-26-2019
04:02 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
This was a fun challenge. I couldn't get the same record count until I found the trick listed in the hint below:
Spoiler
Use Regex to replace any non-word characters with a '|' or ',' for example. This is necessary as using Text to columns and parsing on \s will not work due to some words not being separated by a space. Using this approach, you ensure each word is split up correctly by a delimeter.
meganhan
7 - Meteor
09-26-2019
06:59 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
kmcdaniel
8 - Asteroid
09-26-2019
09:42 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Very simple, elegant and far better than my solution. Congrats.
wcorujo
5 - Atom
09-26-2019
11:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
kelly_gilbert
13 - Pulsar
09-26-2019
02:00 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I wish I could have figured out a way to avoid the second filter using regex, but oh well!
Hints that weren't in the requirements:
Spoiler
1 - "Words" for the purpose of this challenge include any string of alphanumeric characters and underscores
2 - Capitalization is not normalized ("The" and "the" are considered different words)
2 - Capitalization is not normalized ("The" and "the" are considered different words)
My workflow (pretty similar to everyone else's):
Hannah_Lissaman
11 - Bolide
09-28-2019
10:01 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Niklas
8 - Asteroid
09-28-2019
10:01 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
jamielaird
14 - Magnetar
09-28-2019
02:09 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
nivi_s
8 - Asteroid
09-28-2019
02:33 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Sebenius
8 - Asteroid
09-29-2019
09:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
A fast one to get back into the habbit.
As for for giving a tip for books to count words in : Project Gutenberg
Spoiler
weekly 182