find

fun find(input: CharSequence, startIndex: Int = 0): XMatchResult?(source)

Returns the first match of a regular expression in the input, beginning at the specified startIndex.

Return

An instance of MatchResult if match was found or null otherwise.

Parameters

startIndex

An index to start search with, by default 0. Must be not less than zero and not greater than input.length()

Throws

if startIndex is less than zero or greater than the length of the input char sequence.

Samples

samples.text.Regexps.find