LikePattern

data class LikePattern(val pattern: String, val escapeChar: Char? = null)

Represents a pattern used for the comparison of string expressions.

Constructors

Link copied to clipboard
constructor(pattern: String, escapeChar: Char? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val escapeChar: Char? = null

The special character to use as the escape character.

Link copied to clipboard

The string representation of a pattern to match.

Functions

Link copied to clipboard
infix operator fun plus(rhs: String): LikePattern
infix operator fun plus(rhs: LikePattern): LikePattern