Class StringMatching

Class Documentation

class StringMatching

Class StringMatching used to match different strings against each other as defined by the POSIX fnmatch API (1003.2-1992 section B.6).

Public Functions

StringMatching()
virtual ~StringMatching()

Public Static Functions

static bool matchString(const char *input1, const char *input2)

Static method to match two strings. It checks if the input strings match. Any of the strings or both can be a pattern.

static bool matchPattern(const char *pattern, const char *input)

Static method to match a string to a pattern. It checks the string specified by the input argument to see if it matches the pattern specified by the pattern argument.