unaryPlus

operator fun String.unaryPlus()

Append a string of characters to match in the regex. This function escapes the string before appending it to the regex, so it cannot add metacharacters.

See also


operator fun Char.unaryPlus()

Append a single character to match in the regex. This function escapes the char before appending it to the regex, so it cannot add metacharacters.

See also


open operator fun CharRange.unaryPlus()


operator fun KetexToken.unaryPlus()

Append a custom regex token to match in the regex. DOES NOT escape metacharacters.

See also


operator fun KetexSet.unaryPlus()

Append a character set to match in the regex.

See also


operator fun KetexGroup.unaryPlus()

Append a regex group to the regex.

See also