Tutorial (Level 0)
- Try typing
.
and then press Enter - The yellow lines below the tiles show what will be matched by your regex
- For level 0, there is only one color of tile so you can match every character.
- The regex wildcard (
.
) matches one of anything. - Your regex is applied with the "g" (global) flag, so it matches as many times as possible. A single period will match the entire bottom row.