You must make a regex that matches everything except itself. For example, PPCG must not match PPCG, but must match everything else, like something, PPC, and PPCG!.
Surrounding slashes are not considered part of the regex in flavors where they are usually part of the syntax. The same is true of all delimiters.
The regex needs to match the entire string, not just a substring.
You may choose your flavor, but you can't use a flavor newer than this challenge. Please pick a flavor that is easily tested.
Shortest regex in bytes wins.
-
2\$\begingroup\$ Related \$\endgroup\$user58826– user588262017年06月09日 01:24:39 +00:00Commented Jun 9, 2017 at 1:24
-
\$\begingroup\$ Also, jimmy's solution to the previous challenge can be inverted quite trivially to make a valid answer for this one. \$\endgroup\$Martin Ender– Martin Ender2017年06月09日 10:54:14 +00:00Commented Jun 9, 2017 at 10:54
-
1\$\begingroup\$ I love how you pointed out a related question on your own question. \$\endgroup\$Magic Octopus Urn– Magic Octopus Urn2017年06月09日 15:04:28 +00:00Commented Jun 9, 2017 at 15:04
-
2\$\begingroup\$ @carusocomputing Why wouldn't they? The point of related links is to make the challenges show up in each others' sidebars. \$\endgroup\$Martin Ender– Martin Ender2017年06月09日 15:05:12 +00:00Commented Jun 9, 2017 at 15:05
-
\$\begingroup\$ @MartinEnder would assume one would put it in the post itself, not as a comment is all I was saying ;). \$\endgroup\$Magic Octopus Urn– Magic Octopus Urn2017年06月09日 16:02:31 +00:00Commented Jun 9, 2017 at 16:02
1 Answer 1
PCRE flavour, 45 bytes
^(?!\^()(?R){2}\z)|1円\Q(?!\^()(?R){2}\z)|1円\Q
This is a simple modification of jimmy23013's brilliant solution to the opposite challenge. We just need to make two changes:
- In this challenges, the delimiters shouldn't be matched so we drop them from the regex as well. However, that could lead to infinite recursion, because then no characters would be matched before the
(?R)call. To fix this, we match the^explicitly with\^to have one character before we enter the recursion. - We need to negate the result which is as simple as wrapping everything after the
^in a negative lookahead to ensure that the input isn't equal to the string.
For the details of this quining approach, see jimmy's amazing answer.
-
4\$\begingroup\$ Even though it's a modification of that other answer I wouldn't have had a clue about how to do it so +1 \$\endgroup\$TheLethalCoder– TheLethalCoder2017年06月09日 14:58:39 +00:00Commented Jun 9, 2017 at 14:58