All public logs

Jump to navigation Jump to search

Combined display of all available logs of 6bit.ch wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 14:24, 25 February 2022 Xbl talk contribs created page Regex (Created page with "== Regular Expressions == {| class="wikitable" |- ! Metacharacter ! Description |- valign="top" !<code>\</code> |Escape character. |- |- valign="top" !<code>?</code> |Matches the preceding element zero or one time. For example, <code>ab?c</code> matches only "ac" or "abc". |- !<code>+</code> |Matches the preceding element one or more times. For example, <code>ab+c</code> matches "abc", "abbc", "abbbc", and so on, but not "ac". |- !<code><nowiki>|</nowiki></code> |The ch...")