TextMatch Class
Class defining a text match we are looking for.
C# Syntax
public class TextMatch
Remarks
Usage example:
var textMatch = TextMatch.Match("some text");
var textMatch = TextMatch.Match("some text", 2);
System.Object
HP.LFT.SDK.Web.TextMatch
Name | Description | |
---|---|---|
Match(String) | Returns the text match object which can be used to find the first match of the specified text. C# Syntax public static TextMatch Match( string text ) Parameters
| |
Match(UInt32,String) | Returns the text match object which can be used to find the n-th match of the specified text. C# Syntax public static TextMatch Match( string text, uint textOccurrence ) Parameters
|