Skip to content

IRegexp

[Source]

Compiled I-Regexp pattern for full-string matching and substring search. Created via IRegexpCompiler.parse() or .compile().

class val IRegexp

Public Functions

is_match

[Source]

Test if the entire input string matches the pattern.

fun box is_match(
  input: String val)
: Bool val

Parameters

Returns


[Source]

Test if any substring of input matches the pattern.

fun box search(
  input: String val)
: Bool val

Parameters

Returns