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.