Errata

Regular Expression Pocket Reference

Errata for Regular Expression Pocket Reference

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
Printed Page 33
Table 16... the entry for "W"

W is listed as [p{Ll}p{Lu}p{Lt}p{Lo}p{Nd}p{Pc}]
when it should be:
[^p{Ll}p{Lu}p{Lt}p{Lo}p{Nd}p{Pc}]

(i.e. the ^ (caret) character is missing from the beginning).

Anonymous   
Printed Page 33
Table 16... the entry for "W"

W is listed as [p{Ll}p{Lu}p{Lt}p{Lo}p{Nd}p{Pc}]
when it should be:
[^p{Ll}p{Lu}p{Lt}p{Lo}p{Nd}p{Pc}]

(i.e. the ^ (caret) character is missing from the beginning).

Anonymous   
Printed Page 55
Table 30 (continued) half way down

"{n}+ Match at least n times and never backtrack"

{n} is for a fixed number of times, while {n,} is for multiple times.

Anonymous   
Printed Page 55
Table 30 (continued) half way down

"{n}+ Match at least n times and never backtrack"

{n} is for a fixed number of times, while {n,} is for multiple times.

Anonymous