text
- Remove the longest string containing only the
+ Remove the longest string containing only characters from
characters (a space by default) from the
- start/end/both ends of the
string
+ start, end, or both ends (both> is the default)
- trim(both 'x' from 'xTomxx')
+ trim(both 'xyz' from 'yxTomxx')
Tom
trim(leading | trailing
| both from
)
text
- Non-standard version of trim()>
+ Non-standard syntax for trim()>
- trim(both from 'xTomxx', 'x')
+ trim(both from 'yxTomxx', 'xyz')
Tom
in
characters (a space by default)
from the start and end of
string
- btrim('xyxtrimyyx', 'xy')
+ btrim('xyxtrimyyx', 'xyz')
trim
characters (a space by default) from the start of
- ltrim('zzzytrim', 'xyz')
- trim
+ ltrim('zzzytest', 'xyz')
+ test
|
characters (a space by default) from the end of
- rtrim('trimxxxx', 'x')
- trim
+ rtrim('testxxzx', 'xyz')
+ test
|
bytea
- Remove the longest string containing only the bytes in
+ Remove the longest string containing only bytes appearing in
- trim(E'\\000'::bytea from E'\\000Tom\\000'::bytea)
+ trim(E'\\000\\001'::bytea from E'\\000Tom\\001'::bytea)
Tom
bytea
- Remove the longest string consisting only of bytes
-
in bytes from the start and end of
+ Remove the longest string containing only bytes appearing in
+
bytes from the start and end of
- btrim(E'\\000trim\\000'::bytea, E'\\000'::bytea)
+ btrim(E'\\000trim\\001'::bytea, E'\\000\\001'::bytea)
trim