Extracts text from the response content, starting from the end. Everything between (but not including)
the specified after and before string objects will be returned.
If either value cannot be found, the defaultValue will be returned.
Namespace: Facilita.WebAssembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (1.0.0.0)
Syntax
public virtual string ExtractFromEnd( ExtractionCursor cursor, string after, string before, string defaultValue, bool caseSensitive )
Parameters
- cursor
- Type: Facilita.Native ExtractionCursor
An ExtractionCursor object to store the success/failure of the action, and the index in the response at which the match was found.
- after
- Type: System String
This text is searched for in the response content, and the returned string starts immediately before this text occurs in the content.
- before
- Type: System String
This text is searched for in the response content after the after text has been found, and the returned string ends immediately after 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.Remarks
Examples
Response response = request.Send(); ExtractionCursor cursor = new ExtractionCursor(); // 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.ExtractFromEnd( cursor, "\"", "value=\"", "Joe Jones", true); if (cursor.Succeeded) { WriteMessage(string.Format("The value {0} was found at position {1}", extractedText, cursor.Index)); }
See Also