WebSocketMessage ExtractFromEnd Method (ExtractionCursor, String, String)C# API
Extracts text from the message, 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, an empty string will be returned.

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

public string ExtractFromEnd(
	ExtractionCursor cursor,
	string after,
	string before
)

Parameters

cursor
Type: Facilita.Native ExtractionCursor
An ExtractionCursor object to store the success/failure of the action, and the index in the message at which the match was found.
after
Type: System String
This text is searched for in the message 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 message content after the after text has been found, and the returned string ends immediately after this text occurs in the content.

Return Value

The extracted text, or an empty string if the extract failed.
Remarks

Information about the success/failure of this method will be stored in the ExtractionCursor object passed.
Examples

The following example demonstrates extracting text from a WebSocket message
using (WebSocketMessage webSocket_message = Get<WebSocketMessageQueue>("webSocketMessageQueue").GetNextMessage(TimeSpan.FromSeconds(60)))
   {
       ExtractionCursor cursor = new ExtractionCursor();

    // extract the value from the HTML text 
    // <input type="text" name="f_customer" size="32" maxlength="32" value="Joe Smith"> 
    string extractedText = webSocket_message.ExtractFromEnd(
                            cursor,
                            "\"",
                            "value=\"");

    if (cursor.Succeeded)
    {
        WriteMessage(string.Format("The value {0} was found at position {1}", extractedText, cursor.Index));
    }
}
See Also