Bump and I know regex a little bit, but I couldn't find an input to use the regex on.
Comment has been collapsed.
hmm wrote a python script and it didn't find anything. Oh well. Thanks anyway!
Comment has been collapsed.
You should be able to find something if you have the right input to match on.
Also note, that as far as I know in python you need to apply the regex without the global modifier (the "/" in the beginning and "/g" at the end) and instead of using "re.match" use "re.findall" to get the global (multiple) matches. Tried that?
Comment has been collapsed.
Discovered this puzzle at the 11th hour. Never heard of RegEx before! Found a place that can do the thing, read through some explanations about the different pieces of the hint ... but now I don't know how to make it spit out the answer 💀 Would love to know the solution to this one.
Comment has been collapsed.
I am sorry that it did not work out for you. I will post a solution when the giveaway is over!
It would make me even more happy if I see you on the other side before GA ends :) - You need two things to solve it: the regex and a text to use it on. When you get 5 matches you found it.
Comment has been collapsed.
AHHHH THE DESCRIPTION TEXT WAS THE INPUT AND YOU EVEN HINTED THAT IN ANOTHER COMMENT
AHHHHH LOLOLOOLOLLOL SONOFA! PEBKAC!
Thank you for the detailed solution writeup. Please keep making puzzles! ⛄🤘
Comment has been collapsed.
1,727 Comments - Last post 12 seconds ago by MeguminShiro
429 Comments - Last post 48 seconds ago by Chris76de
10 Comments - Last post 50 seconds ago by 10102103
390 Comments - Last post 5 minutes ago by Massulan
17,128 Comments - Last post 7 minutes ago by BHTrellis188
2 Comments - Last post 8 minutes ago by pivotalHarry
1,274 Comments - Last post 14 minutes ago by sensualshakti
10,811 Comments - Last post 2 minutes ago by Yobi5TailedFox
596 Comments - Last post 3 minutes ago by Prosac
74 Comments - Last post 10 minutes ago by LittleBibo1
37 Comments - Last post 27 minutes ago by Noodles91
306 Comments - Last post 31 minutes ago by Khazadson
602 Comments - Last post 32 minutes ago by Fluffster
4,196 Comments - Last post 37 minutes ago by Midnight12891
This is for BrokenAge and Soulblight.Have fun solving this puzzle, it is for lvl 2 and will last until 17th december.
/(?<![binolvz ])([^!.,127ABSTabdefhikmnoprstuvw ])(?![l])/g
Solution:
A regular expression (regex) is a sequence of characters that specifies a match pattern in text.
So it can be used to match specific parts in a text.
If we apply the given regex:
/(?<![binolvz ])([^!.,127ABSTabdefhikmnoprstuvw ])(?![l])/g
on the description textThis is for BrokenAge and Soulblight.Have fun solving this puzzle, it is for lvl 2 and will last until 17th december.
we will get the following matches: "g","l","H","z","c". An easy way to do this is by using online regex matching tools like: https://regexr.com/ , https://regex101.com/ or use any programming langue/script to apply the regex. (see appended image which shows regex101.com)And the 5 letters matched in the text can be used in the steamgifts url like steamgifts.com/giveaway/glHzc/.
More deteiled explanation what does the regex is doing:
([^!.,127ABSTabdefhikmnoprstuvw ])
part tells us, that any character is matched which is not one of.,127ABSTabdefhikmnoprstuvw
.So applying this, we only have the characters
gllgHlgzzlllllll
left from the sentence.inolvz
before the given character. So we only have the charactersglHzc
left. Example: In Soulblight we only match onel
Soulblight since the otherl
has ab
before it, and theg
has ai
before it.Comment has been collapsed.