__interface IRegEx : IUnknown
{
BOOL MatchesRegex(LPCTSTR input, LPCTSTR regex);
HRESULT GetMatch(size_t index, LPBSTR pValue);
};
This method is implemented by the ID_Regex component (IRegex.h) and provides support for regular expression processing.
Related Topics
Wizard Page Interfaces
BOOL MatchesRegex(LPCTSTR
input, LPCTSTR regex)
HRESULT GetMatch(size_t
index, LPBSTR pValue)