Regex

expect fun Regex(pattern: String)(source)
expect fun Regex(pattern: String, option: RegexOption)(source)
expect fun Regex(pattern: String, options: Set<RegexOption>)(source)
actual fun Regex(pattern: String)(source)

Creates a regular expression from the specified pattern string and the default options.


actual fun Regex(pattern: String, option: RegexOption)(source)

Creates a regular expression from the specified pattern string and the specified single option.


actual fun Regex(pattern: String, options: Set<RegexOption>)(source)

Creates a regular expression from the specified pattern string and the specified set of options.

actual fun Regex(pattern: String)

Creates a regular expression from the specified pattern string and the default options.


actual fun Regex(pattern: String, option: RegexOption)

Creates a regular expression from the specified pattern string and the specified single option.


actual fun Regex(pattern: String, options: Set<RegexOption>)

Creates a regular expression from the specified pattern string and the specified set of options.

actual fun Regex(pattern: String)

Creates a regular expression from the specified pattern string and the default options.


actual fun Regex(pattern: String, option: RegexOption)

Creates a regular expression from the specified pattern string and the specified single option.


actual fun Regex(pattern: String, options: Set<RegexOption>)

Creates a regular expression from the specified pattern string and the specified set of options.