:orphan: .. _trim: ************************** TRIM ************************** Trims both leading and trailing whitespace from a string. See also :ref:`ltrim`, :ref:`rtrim`. Syntax ========== .. code-block:: postgres TRIM( expr ) Arguments ============ .. list-table:: :widths: auto :header-rows: 1 * - Parameter - Description * - ``expr`` - String expression Returns ============ Returns the same type as the argument supplied. Notes ======= * This function is equivalent to the ANSI form ``TRIM( BOTH FROM expr )`` * If the value is NULL, the result is NULL. Examples =========== For these examples, consider the following table and contents: .. code-block:: postgres CREATE TABLE jabberwocky(line TEXT); INSERT INTO jabberwocky VALUES ('''Twas brillig, and the slithy toves '), (' Did gyre and gimble in the wabe: ') ,('All mimsy were the borogoves, '), (' And the mome raths outgrabe. ') ,('"Beware the Jabberwock, my son! '), (' The jaws that bite, the claws that catch! ') ,('Beware the Jubjub bird, and shun '), (' The frumious Bandersnatch!" '); Trimming a literal value ------------------------------- In this example we use :ref:`concat` to show the whitespace. .. code-block:: psql SELECT '#' || TRIM(' Blue ') || '#'; trim ------- #Blue# Trimming a column of values -------------------------------------- .. code-block:: psql SELECT ('Line: ' || line || '#') as untrimmed, ('Line: ' || TRIM(line) || '#') as trimmed FROM jabberwocky; untrimmed | trimmed --------------------------------------------------------+------------------------------------------------- Line: 'Twas brillig, and the slithy toves # | Line: 'Twas brillig, and the slithy toves# Line: Did gyre and gimble in the wabe: # | Line: Did gyre and gimble in the wabe:# Line: All mimsy were the borogoves, # | Line: All mimsy were the borogoves,# Line: And the mome raths outgrabe. # | Line: And the mome raths outgrabe.# Line: "Beware the Jabberwock, my son! # | Line: "Beware the Jabberwock, my son!# Line: The jaws that bite, the claws that catch! # | Line: The jaws that bite, the claws that catch!# Line: Beware the Jubjub bird, and shun # | Line: Beware the Jubjub bird, and shun# Line: The frumious Bandersnatch!" # | Line: The frumious Bandersnatch!"#