-
Notifications
You must be signed in to change notification settings - Fork 43
String Query Operations
Malcolm Groves edited this page Jan 6, 2014
·
9 revisions
In addition to the Common Query operations, FluentQuery supports operations specific to the type being queried.
For querying strings (say, in a TStrings, or a TList<Strings>, the additional operations are:
| Operation | Description |
|---|---|
| Matches | Enumerates items that match the supplied string. |
| Contains | Enumerates items that contain the supplied string. |
| StartsWith | Enumerates items that start with the supplied string. |
| EndsWith | Enumerates items that end with the supplied string. |
Note, all String Query Operations can be either case-sensitive or case-insenstive, but are case-insensitive by default.