Extracts a list of items from this Response,
specifying whether the search should be case-sensitive,
and the maximum number of items to extract.
Namespace: Facilita.WebAssembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (1.0.0.0)
Syntax
Parameters
- before
- Type: System String
A string before an item to be extracted.
- after
- Type: System String
A string after an item to be extracted.
- caseSensitive
- Type: System Boolean
true if the search should be case-sensitive.
- maxItems
- Type: System Int32
The maximum number of items to extract.
Return Value
A list containing the extracted string objects.Remarks
Examples
// The response contains the following text within its body // <select> // <option value="volvo">Volvo</option> // <option value="saab">Saab</option> // <option value="mercedes">Mercedes</option> // <option value="audi">Audi</option> // </select> // Searching from the beginning of the web page extract at most 10 car model items List<string> matchedstrings = response.ExtractList("<option value=\"", "\">", true, 10); // contents of matchedstrings = ( volvo, saab, mercedes, audi )
See Also