class documentation

class TextSearchType(Enum): (source)

View In Hierarchy

Undocumented

Class Variable any match any substring
Class Variable begin match the beginning of the string
Class Variable end match the end of the string
Class Variable exact match the whole string
Class Variable like use the percent sign as a placeholder
any: str = (source)

match any substring

begin: str = (source)

match the beginning of the string

end: str = (source)

match the end of the string

exact: str = (source)

match the whole string

like: str = (source)

use the percent sign as a placeholder