16.01.2013 Views

Ipswitch WhatsUp Gold User Guide - Ipswitch Documentation Server

Ipswitch WhatsUp Gold User Guide - Ipswitch Documentation Server

Ipswitch WhatsUp Gold User Guide - Ipswitch Documentation Server

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

<strong>Ipswitch</strong> <strong>WhatsUp</strong> <strong>Gold</strong> <strong>User</strong> <strong>Guide</strong><br />

Meta-character Matches<br />

(...) parentheses Provides grouping for quantifiers, limits scope of<br />

alternation via precedence.<br />

Example: (abc)* matches 0 or more occurrences of the<br />

the string abc<br />

Example: <strong>WhatsUp</strong> (<strong>Gold</strong>)|(Professional) matches<br />

"<strong>WhatsUp</strong> <strong>Gold</strong>" or "<strong>WhatsUp</strong> Professional"<br />

\0, \1, ... backreference Matches text previously matched within first, second,<br />

etc, match group (starting at 0).<br />

Example: .*? matches<br />

"xxx".<br />

! negation The expression following ! does not match the input<br />

Example: a!b matches "a" not followed by "b".<br />

Abbreviations<br />

Abbreviations are shorthand Meta-characters.<br />

Abbreviation Matches<br />

\a Any alphanumeric character: ([a-zA-Z0-9])<br />

\b White space (blank): ([ \\t])<br />

\c Any alphabetic character: ([a-zA-Z])<br />

\d Any decimal digit: [0-9]<br />

\D Any non decimal digit: [^0-9]<br />

\h Any hexadecimal digit: ([0-9a-fA-F])<br />

\n Newline: (\r|(\r?\n))<br />

\p Any punctuation character: ,./\';:"!?@#$%^&*()[]{}- _=+|!~<br />

\P Any non-punctuation character<br />

\q A quoted string: (\"[^\"]*\")|(\'[^\']*\')<br />

\s <strong>WhatsUp</strong> <strong>Gold</strong> style white space character: [ \\t\\n\\r\\f\\v]<br />

\S <strong>WhatsUp</strong> <strong>Gold</strong> style non-white space character:<br />

[^ \\t\\n\\r\\f\\v]<br />

\w Any word characters (letters and digits): ([a-zA-Z0-9_])<br />

\W Non-word character: ([^a-zA-Z0-9_])<br />

\z An integer: ([0-9]+)<br />

174

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!