Revision history of "Regular Expressions"

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • curprev 12:35, 16 March 2022Xbl talk contribsm 5,068 bytes 0 Xbl moved page Regex to Regular Expressions without leaving a redirect
  • curprev 14:24, 25 February 2022Xbl talk contribs 5,068 bytes +5,068 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..."