Module trim

Source

Staticsยง

_LINKME_ELEMENT_ltrim_bytea_bytea_bytea ๐Ÿ”’
_LINKME_ELEMENT_ltrim_varchar_varchar ๐Ÿ”’
_LINKME_ELEMENT_ltrim_varchar_varchar_varchar ๐Ÿ”’
_LINKME_ELEMENT_rtrim_bytea_bytea_bytea ๐Ÿ”’
_LINKME_ELEMENT_rtrim_varchar_varchar ๐Ÿ”’
_LINKME_ELEMENT_rtrim_varchar_varchar_varchar ๐Ÿ”’
_LINKME_ELEMENT_trim_bytea_bytea_bytea ๐Ÿ”’
_LINKME_ELEMENT_trim_varchar_varchar ๐Ÿ”’
_LINKME_ELEMENT_trim_varchar_varchar_varchar ๐Ÿ”’

Functionsยง

ltrim
Note: the behavior of ltrim in PostgreSQL and trim_start (or trim_left) in Rust are actually different when the string is in right-to-left languages like Arabic or Hebrew. Since we would like to simplify the implementation, currently we omit this case.
ltrim_bytea
Removes the longest string containing only bytes appearing in bytesremoved from the start of bytes.
ltrim_bytea_bytea_bytea ๐Ÿ”’
ltrim_characters
ltrim_varchar_varchar ๐Ÿ”’
ltrim_varchar_varchar_varchar ๐Ÿ”’
rtrim
Note: the behavior of rtrim in PostgreSQL and trim_end (or trim_right) in Rust are actually different when the string is in right-to-left languages like Arabic or Hebrew. Since we would like to simplify the implementation, currently we omit this case.
rtrim_bytea
Removes the longest string containing only bytes appearing in bytesremoved from the end of bytes.
rtrim_bytea_bytea_bytea ๐Ÿ”’
rtrim_characters
rtrim_varchar_varchar ๐Ÿ”’
rtrim_varchar_varchar_varchar ๐Ÿ”’
trim
trim_bound ๐Ÿ”’
trim_bytea
Removes the longest string containing only bytes appearing in bytesremoved from the start, end, or both ends (BOTH is the default) of bytes.
trim_bytea_bytea_bytea ๐Ÿ”’
trim_characters
trim_varchar_varchar ๐Ÿ”’
trim_varchar_varchar_varchar ๐Ÿ”’