Difference between revisions of "Regular Expressions"

From wiki
Jump to navigation Jump to search
(Created page with ";. :Match any character except newline")
 
Line 1: Line 1:
;.  
+
{| class="wikitable"
:Match any character except newline
+
|-
 +
|.||Any character except newline
 +
|-
 +
|\d||Digit
 +
|-
 +
|\s||Whitespace
 +
|-
 +
|*||0 or more matches of previous expression
 +
|-
 +
|+||1 or more matches of previous expression
 +
|}

Revision as of 23:33, 6 January 2018

. Any character except newline
\d Digit
\s Whitespace
* 0 or more matches of previous expression
1 or more matches of previous expression