Search Results for

    Show / Hide Table of Contents

    Class Match

    A match object which is returned by FST, FSA, or regex matches

    Inheritance
    object
    Match
    Inherited Members
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    Namespace: Sdl.LanguagePlatform.Core.Tokenization
    Assembly: Sdl.LanguagePlatform.Core.dll
    Syntax
    public class Match

    Constructors

    Match(int, int)

    Initializes a new instance with the specified values.

    Declaration
    public Match(int index, int length)
    Parameters
    Type Name Description
    int index

    The start index in the underlying string

    int length

    The length of the match

    Properties

    Index

    Gets or sets the start index in the underlying input string.

    Declaration
    public int Index { get; set; }
    Property Value
    Type Description
    int

    Length

    Gets or sets the length of the match.

    Declaration
    public int Length { get; set; }
    Property Value
    Type Description
    int
    In this article
    • Constructors
      • Match(int, int)
    • Properties
      • Index
      • Length
    Back to top Generated by DocFX