RegExp

external class RegExp(pattern: String, flags: String? = definedExternally)

Exposes the JavaScript RegExp object to Kotlin.

Constructors

Link copied to clipboard
fun RegExp(pattern: String, flags: String? = definedExternally)

Functions

Link copied to clipboard
fun exec(str: String): RegExpMatch?
Link copied to clipboard
fun test(str: String): Boolean
Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
val global: Boolean
Link copied to clipboard
val ignoreCase: Boolean
Link copied to clipboard

The lastIndex is a read/write integer property of regular expressions that specifies the index at which to start the next match.

Link copied to clipboard
val multiline: Boolean

Extensions

Link copied to clipboard

Resets the regular expression so that subsequent RegExp.test and RegExp.exec calls will match starting with the beginning of the input string.