PatternSpec

class PatternSpec(pointer: <Error class: unknown class><<Error class: unknown class>>) : Record

A GPatternSpec struct is the 'compiled' form of a pattern. This structure is opaque and its fields cannot be accessed directly.

Constructors

Link copied to clipboard
constructor(pointer: <Error class: unknown class><<Error class: unknown class>>)

Types

Link copied to clipboard
object Companion : RecordCompanion<PatternSpec, <Error class: unknown class>>

Properties

Link copied to clipboard
val glibPatternSpecPointer: <Error class: unknown class><<Error class: unknown class>>

Functions

Link copied to clipboard

Copies @pspec in a new #GPatternSpec.

Link copied to clipboard
fun equal(pspec2: PatternSpec): Boolean

Compares two compiled pattern specs and returns whether they will match the same set of strings.

Link copied to clipboard
fun free()

Frees the memory allocated for the #GPatternSpec.

Link copied to clipboard
fun match(stringLength: <Error class: unknown class>, string: String, stringReversed: String? = null): Boolean

Matches a string against a compiled pattern. Passing the correct length of the string given is mandatory. The reversed string can be omitted by passing null, this is more efficient if the reversed version of the string to be matched is not at hand, as g_pattern_match() will only construct it if the compiled pattern requires reverse matches.

Link copied to clipboard
fun matchString(string: String): Boolean

Matches a string against a compiled pattern. If the string is to be matched against more than one pattern, consider using g_pattern_match() instead while supplying the reversed string.