Response Extract Method (String, String, String, Boolean)C# API
Extracts text from the response content - everything between (but not including) the specified before and after string objects - returning the defaultValue if they cannot be found, and specifying whether the search will be case-sensitive.

Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public string Extract(
	string before,
	string after,
	string defaultValue,
	bool caseSensitive
)

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.
defaultValue
Type: System String
The value to return if either the before or after text cannot be found.
caseSensitive
Type: System Boolean
true if the search should be case-sensitive.

Return Value

The extracted text, or defaultValue if the extract failed.
Examples

The following example demonstrates extracting text from a HTML Response.
Response response = request.Send();

// extract the value from the HTML text, defaulting to "Joe Jones" if the value cannot be found 
// <input type="text" name="f_customer" size="32" maxlength="32" value="Joe Smith"> 
string extractedText = response.Extract(
                        "value=\"",
                        "\"",
                        "Joe Jones",
                        true);
See Also