String expressions that can be used when building a LTVerex.
public enum LTVerexStringExpression
Value | Member | Description |
---|---|---|
0 | Add | Add an expression. |
1 | Then | Match an expression. |
2 | Maybe | Optionally match an expression. |
3 | Anything | Match a set of characters any number of times. |
4 | AnythingBut | Match any set of characters except the ones specified any number of times. |
5 | Something | Match any set of characters at least once. |
6 | SomethingBut | Match any set of characters except the ones specified at least once. |
7 | LineBreak | Match a line break character. |
8 | Tab | Match a tab character. |
9 | Word | Match a string of characters corresponding to a word. |
10 | AnyOf | Match any of these characters exactly once. |
11 | Any | Match any of these characters exactly once. |
12 | Multiple | Match the previous group any number of times. |
13 | Alt | Repeat the previous expression. |