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.
179 Comments - Last post 10 minutes ago by uColdStone
896 Comments - Last post 1 hour ago by InSpec
133 Comments - Last post 3 hours ago by eifelkenny
461 Comments - Last post 4 hours ago by duville
245 Comments - Last post 5 hours ago by xxxka
47,129 Comments - Last post 6 hours ago by MeguminShiro
195 Comments - Last post 6 hours ago by Nirdews
55 Comments - Last post 23 seconds ago by GangsterJochen
111 Comments - Last post 1 minute ago by SergeD
12 Comments - Last post 3 minutes ago by PapaSmok
1,427 Comments - Last post 4 minutes ago by ChocolateVC
16,304 Comments - Last post 6 minutes ago by MarvashMagalli
169 Comments - Last post 16 minutes ago by nubux
125 Comments - Last post 17 minutes ago by Zarshir
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.