Extracts text from the response content - everything between (but not including)
the specified before and after string objects -
returning an empty string if they cannot be found.
Namespace: Facilita.WebAssembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (1.0.0.0)
Syntax
Parameters
- before
- Type: System String
This text is searched for in the response content, and the returned string starts immediately after this text occurs in the content.
- after
- Type: System String
This text is searched for in the response content after the before text has been found, and the returned string ends immediately before this text occurs in the content.
Return Value
The extracted text, or an empty string if the extract failed.Remarks
Note |
---|
The search is case-sensitive. |
Examples
Response response = request.Send(); // extract the value from the HTML text // <input type="text" name="f_customer" size="32" maxlength="32" value="Joe Smith"> string extractedText = response.Extract( "value=\"", "\"");
See Also