Contains expressions supported by the Verex .
typedef enum L_VerexStringExpression
{
L_VerexStringExpression_Add,
L_VerexStringExpression_Then,
L_VerexStringExpression_Maybe,
L_VerexStringExpression_Anything,
L_VerexStringExpression_AnythingBut,
L_VerexStringExpression_Something,
L_VerexStringExpression_SomethingBut,
L_VerexStringExpression_LineBreak,
L_VerexStringExpression_Tab,
L_VerexStringExpression_Word,
L_VerexStringExpression_AnyOf,
L_VerexStringExpression_Any,
L_VerexStringExpression_Multiple,
L_VerexStringExpression_Alt,
} L_VerexStringExpression;
Add a matching pattern/text.
From a previous addition, then add a matching pattern if and only if, the previous pattern was matched.
Add an optional pattern or text to match.
Add a pattern to match any characters. Including empty strings.
Add a pattern to match any characters with the exceptions given. Including empty strings.
Add a pattern to match any characters.
Add a pattern to match any characters with the given exceptions.
Add a pattern to match for new lines.
Add a pattern to match for tabs.
Add a pattern to match a word.
Add a pattern to match any pattern of the those given.
Add a pattern to match any character.
Add a pattern to match 1 or more of the given text.
Add a pattern to be matched alternatively to the previous added pattern.
Verex object is built accumulatively by calling L_Verex_AddStringExpression
with any of the enumeration values and parameters. Each call considers the pattern before, then adds it if necessary.
Verex
stands for verbal expression. Refers to an API that builds a Regex
expression using intuitive verbal expressions, such as start of line, match anything, match a word, etc. It builds accumulatively by adding to the verbal expression until a whole Regex
phrase is complete and then you can export it.
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document