It's a regular expression. It searches for all space-class characters followed by '|' followed by ':' matching globally (g) and multi-line (m). It scans a string and removes the sequence of three characters at any point in the string where strlen(s) >= 3 && isspace(s[0]) && s[1] == '|' && s[2] == ':' (C code) is true.
Name:
op2011-11-03 23:15
holy crap, I actually got an answer. Thanks a lot :D
++ internets for you
Name:
Anonymous2011-11-04 2:13
>>3 followed by |
| is or. It removes any whitespace or semicolons from the string.
>>6
We want to see a change in /prog/ so we become the change. Besides, >>1 knows how to write properly and seems to know what he's doing and only needs a little nudge in the right direction.