Blank Space in Regex Pattern

Hi guys,

I’m trying to extract the last email from an email thread. To this end, I’m identifying the date mention of the previous email in the thread – e.g. “On Fri. 5 Jul. 2024 at 16:51, John DOE wrote:” (“Le ven. 5 juil. 2024 à 16h51, John DOE a écrit :” in French) – and extracting the content that lies before that mention.


The thing is, I noticed that when using a blank space in my regular expression, the ‘Text Parser’ module wouldn’t recognize that character.


But if instead I replace that blank space with the broader metacharacter \s, the ‘Text Parser’ module will this time recognize the blank space.


And yet:

  1. as shown in the first screenshots, the inputted text does contain a blank space
  2. as explained in Make Academy, Make is supposed to identify blank spaces

Make Academy

Do you guys have any explanation as to that mystery?

Thanks.