W3cubDocs

/Kotlin

toRegex

Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
fun String.toRegex(): Regex

Converts the string into a regular expression Regex with the default options.

Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
fun String.toRegex(option: RegexOption): Regex

Converts the string into a regular expression Regex with the specified single option.

Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
fun String.toRegex(options: Set<RegexOption>): Regex

Converts the string into a regular expression Regex with the specified set of options.

© 2010–2020 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/to-regex.html