Quantifier

public enum Quantifier : Swift.String, Codable, CaseIterable

Undocumented

  • Undocumented

    Declaration

    Swift

    case star = "*"
  • Undocumented

    Declaration

    Swift

    case plus = "+"
  • Undocumented

    Declaration

    Swift

    case questionMark = "?"
  • Undocumented

    Declaration

    Swift

    case dash = "-"
  • The minimum number of matches required to satisfy the quantifier

    Declaration

    Swift

    public var minimumMatches: Int { get }
  • The maximum number of matches required to satisfy the quantifier

    Declaration

    Swift

    public var maximumMatches: Int? { get }