StringSearch Class Members
In This Topic
The following tables list the members exposed by StringSearch.
Public Constructors
Public Properties
| Name | Description |
| Greedy | Gets or sets whether the regular expression should do a greedy search. A non-Greedy search on the string "FarPoint Technologies" with the pattern "F*o" would return "FarPo". A Greedy search of the same string would return "FarPoint Techno". |
| MatchExact | Gets or sets whether the match must be exact. An exact match is a string that is delimited at the beginning and end by either whitespace or end of line. Note: This property does not have any affect on the search pattern if the pattern was set using the RegularExpressionPattern property. |
| MatchIndex | Gets the index of the first character in the matched substring |
| MatchLength | Gets the length of the matched substring |
| MatchString | Gets the matched substring |
| RegularExpressionPattern | Gets or sets the regular expression pattern to use for the search. |
| SearchPattern | Sets the search pattern. Note: This is not a regular expression pattern. |
Top
Public Methods
| Name | Description |
| Find | Searches the value string, starting at a specified index, for a character sequence that matches the provided pattern. |
Top
See Also