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.
9 Comments - Last post 7 minutes ago by Annoyer13
312 Comments - Last post 12 minutes ago by MaxiBoi1357
43 Comments - Last post 49 minutes ago by wigglenose
1 Comments - Last post 1 hour ago by FateOfOne
62 Comments - Last post 1 hour ago by terrascura
966 Comments - Last post 1 hour ago by damianea103
26 Comments - Last post 2 hours ago by doomofdoom
804 Comments - Last post 7 minutes ago by ManowGamer
5 Comments - Last post 11 minutes ago by AliSama
960 Comments - Last post 12 minutes ago by ManowGamer
30,157 Comments - Last post 18 minutes ago by Masafor
222 Comments - Last post 26 minutes ago by Eigan123
1,599 Comments - Last post 29 minutes ago by ManowGamer
316 Comments - Last post 31 minutes ago by Fluffster
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.