Research Article

Packet Payload Monitoring for Internet Worm Content Detection Using Deterministic Finite Automaton with Delayed Dictionary Compression

Table 2

Patterns for regular expression.

SyntaxMeaningExample

At the beginning, the pattern should be matched with this input.FH Shows FH starts with this pattern as input. F with this pattern “”, matches FH anywhere in the input.

OR relationshipFH Represents F or H.

.A single character wildcardF. Represents end of the string.

?Representing one or less quantifierF? Represents F or an empty string.

*Representing zero or more quantifierF* Denotes an arbitrary number of Fs.

RepeatF{200} Means 200 Fs.

A class of charactersejk Represents a letter , j, or k.

Anything but Represents any character
But not .