Extracts text from the message content - everything between (but not including)
the specified beforeRegExp and afterRegExp string objects -
returning an empty string if they cannot be found,
and what action to take in case of failure.
Namespace: Facilita.WebAssembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (1.0.0.0)
Syntax
public string ExtractRegExp( ExtractionCursor cursor, string beforeRegExp, string afterRegExp, ActionType failAction )
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.
- beforeRegExp
- Type: System String
This text is searched for in the message content, and the returned string starts immediately after this text occurs in the content.
- afterRegExp
- Type: System String
This text is searched for in the message content after the beforeRegExp text has been found, and the returned string ends immediately before this text occurs in the content.
- failAction
- Type: Facilita.Fc.Runtime ActionType
The action to take if the extract fails.
Return Value
The extracted text, or an empty string if the extract failed.Remarks
Examples
ExtractionCursor cursor = new ExtractionCursor(); // <script type=\"text/JavaScript\" src=\"javascript/common.js\"></script>\<noscript>You do not have Javascript enabled.</noscript>\clientSrc=195.234.243.132;\ string extractedText = webSocketMessage.ExtractRegExp( cursor, "client[Ss][Rr][Cc]=|client[Ss][Rr][Cc][Hh][Ee][Aa][Dd][Ee][Rr]=", ";", ActionType.ACT_ERROR); if (cursor.Succeeded) { WriteMessage(string.Format("The value {0} was found at position {1}", extractedText, cursor.Index)); }
See Also