Perl Regular Expressions: Revision history

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.

1 February 2011

  • curprev 18:2718:27, 1 February 2011 Scott talk contribs 2,763 bytes +2,763 Created page with '== Perl Regular Expressions == <source lang="perl"> /a.c/ # (1 of any character) matches "abc" but not "ac" or "abbc" /a*c/ # (0 or more) matches "c", "ac", "aac", …'