Skip to content

Who Reigns Supreme? Parsing Our WhatsApp Chat for Wordle Glory

Back in 2022, in a bid to outwit my mother in our daily Wordle battles, I wrote some C# code to explore optimal starting guesses. You can read about that experiment here.

Fast forward two years, and my Wordle addiction is alive and well. The daily challenge remains as compelling as ever, but it’s the family WhatsApp group – where scores are shared, victories boasted, and failures commiserated – that adds an extra layer of fun.

As 2024 winds down, I decided to dust off my coding skills and whip up a quick C# console application. The goal? To parse an export of our WhatsApp chat, gather all the shared Wordle scores, and find out if my strategies have paid off this year. Spoiler alert: they haven’t.

If you’ve got a similar Wordle-centric group chat with family or friends and fancy crowning your own Wordle Champion of the Year, the source code is available on GitHub: WordleParser.

How It Works

The application takes a single argument: the path to an exported chat text file. It parses the file using a regular expression to extract anything resembling a Wordle score. Duplicate scores are weeded out, and the average family score for each calendar day is logged. For those unfortunate days when a puzzle remains unsolved, the application assigns a ‘seven’ to reflect the failure.

The app then aggregates scores into calendar months and years, calculating each family member’s stats for the chosen date range. Participants are ranked based on their mean difference from the average family score per day.

For example, if three family members scored a 4, but one managed a dazzling 2, the day’s average would be 3.5. The three “fours” would each have a daily difference of +0.5, while the lucky “two” would boast a difference of -1.5.

The Results

So, who triumphed in the Nelson family Wordle-off this year? Did my painstaking analysis from 2022 finally give me the edge?

Reader, it did not.

Despite my best efforts, I only just managed to sneak into second place. Predictably, my mother reigned supreme, crushing us all with an average score of 4.055 and a mean difference from the family average of -0.128. This consistency made her our undisputed Wordle Family Champion of 2024.

Image generated using OpenAI’s DALL·E tool.
Published inFamilyFun
Copyright © Ian Fraser Nelson 2025